summaryrefslogtreecommitdiff
path: root/home/ebisu/shared
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-23 03:29:35 -0700
committerFuwn <[email protected]>2024-10-23 03:29:35 -0700
commit1712004ed0d471b32f3b8c9d7122fc6b7261c358 (patch)
tree0a1f3a2fc1fb2a353e7c3762a4e01938689773e6 /home/ebisu/shared
parenthome: split editor to shared (diff)
downloadnixos-config-1712004ed0d471b32f3b8c9d7122fc6b7261c358.tar.xz
nixos-config-1712004ed0d471b32f3b8c9d7122fc6b7261c358.zip
home: split filesystem to shared
Diffstat (limited to 'home/ebisu/shared')
-rw-r--r--home/ebisu/shared/default.nix1
-rw-r--r--home/ebisu/shared/filesystem.nix14
2 files changed, 15 insertions, 0 deletions
diff --git a/home/ebisu/shared/default.nix b/home/ebisu/shared/default.nix
index c550742..66b3406 100644
--- a/home/ebisu/shared/default.nix
+++ b/home/ebisu/shared/default.nix
@@ -5,6 +5,7 @@
./system
./utility
./editor.nix
+ ./filesystem.nix
./language.nix
];
}
diff --git a/home/ebisu/shared/filesystem.nix b/home/ebisu/shared/filesystem.nix
new file mode 100644
index 0000000..f0ddb79
--- /dev/null
+++ b/home/ebisu/shared/filesystem.nix
@@ -0,0 +1,14 @@
+{ pkgs, ... }:
+{
+ programs = {
+ nnn.enable = true;
+ # lf.enable = true;
+ };
+
+ home.packages = with pkgs; [
+ nemo
+ dust
+ yazi
+ broot
+ ];
+}