enable nnn

This commit is contained in:
Adithya 2024-04-13 23:56:18 +05:30
parent f5e3ed4d25
commit 007d23beef
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 14 additions and 0 deletions

View file

@ -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
View 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";
};
};
}