enable nnn
This commit is contained in:
parent
f5e3ed4d25
commit
007d23beef
2 changed files with 14 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
./mpv.nix
|
./mpv.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
|
./nnn.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
|
|
13
home/programs/nnn.nix
Normal file
13
home/programs/nnn.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
programs.nnn = {
|
||||||
|
enable = true;
|
||||||
|
plugins = {
|
||||||
|
src = (pkgs.fetchFromGitHub {
|
||||||
|
owner = "jarun";
|
||||||
|
repo = "nnn";
|
||||||
|
rev = "ad04944bdf9f4c2dc936a5a843040bf6966e619a";
|
||||||
|
hash = "sha256-7fMmeh0YD9G3NSKsLVX3wmQuH7WO8CEms7MeXxMh0/E=";
|
||||||
|
}) + "/plugins";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue