feat(programs): add navi

dev-docs
Moritz Böhme 2023-04-25 19:50:28 +02:00
parent 52650a3c84
commit af1f1fec2e
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
4 changed files with 29 additions and 1 deletions

View File

@ -62,6 +62,7 @@ in
fish.enable = true; fish.enable = true;
git.enable = true; git.enable = true;
gpg.enable = true; gpg.enable = true;
navi.enable = true;
tmux.enable = true; tmux.enable = true;
}; };
}; };
@ -99,6 +100,7 @@ in
exa exa
gparted gparted
neofetch neofetch
reptyr
ripgrep ripgrep
up up
viu viu
@ -143,7 +145,6 @@ in
]; ];
}; };
zoxide.enable = true; zoxide.enable = true;
navi.enable = true;
}; };
home = { home = {
username = "moritz"; username = "moritz";

View File

@ -18,6 +18,7 @@
./ledger ./ledger
./logseq.nix ./logseq.nix
./miracast.nix ./miracast.nix
./navi
./nvim ./nvim
./python.nix ./python.nix
./rofi ./rofi

View File

@ -0,0 +1,6 @@
% tmux, reptyr
# send background process to tmux
bg <process> && disown <process> && tmux new "$SHELL -c 'reptyr <process>'"
$ process: ps x -eo pid,tty,stat | awk '$2 ~ /pts/' | awk '$3 ~ /T/' | cut -d" " -f1 --- --preview "ps -p {} -o cmd"

View File

@ -0,0 +1,20 @@
{ config, lib, ... }:
with lib;
let
cfg = config.my.programs.navi;
in
{
options.my.programs.navi.enable = mkEnableOption "navi";
config = mkIf cfg.enable {
home-manager.users.moritz = {
programs.navi.enable = true;
xdg.dataFile."navi/cheats/personal" = {
enable = true;
recursive = true;
source = ./cheats;
};
};
};
}