diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-09-03 09:43:32 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-09-03 09:43:32 +0530 |
commit | 07ffb347de3ae614a57503c9875eac391a8ad9a3 (patch) | |
tree | b6d669df240d031d0c7f186c4c14291bb8b77cd9 /home/common | |
parent | f5ecea94c666737af9c1d6d97cab46ff38bec0a3 (diff) |
chore(common/nnn): init
Diffstat (limited to 'home/common')
-rw-r--r-- | home/common/home.nix | 2 | ||||
-rw-r--r-- | home/common/modules/nnn.nix | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/home/common/home.nix b/home/common/home.nix index f3ecad9..51e10b3 100644 --- a/home/common/home.nix +++ b/home/common/home.nix @@ -13,6 +13,7 @@ in ./modules/ssh.nix ./modules/dev.nix ./modules/neovim + ./modules/nnn.nix ../../global/common ]; @@ -33,7 +34,6 @@ in htop curl file - nnn ps_mem dig diff --git a/home/common/modules/nnn.nix b/home/common/modules/nnn.nix new file mode 100644 index 0000000..fd2046f --- /dev/null +++ b/home/common/modules/nnn.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + programs.nnn = { + enable = true; + package = pkgs.nnn.override { withNerdIcons = true; }; + }; +} |