summaryrefslogtreecommitdiff
path: root/home/common
diff options
context:
space:
mode:
Diffstat (limited to 'home/common')
-rw-r--r--home/common/home.nix2
-rw-r--r--home/common/modules/nnn.nix7
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; };
+ };
+}