summaryrefslogtreecommitdiff
path: root/home/ebisu/core/filesystem/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-04 10:23:53 -0700
committerFuwn <[email protected]>2024-10-04 10:23:53 -0700
commit33cb02e80c2250f12dc5f2ac99a9f63695b66521 (patch)
tree90e2585173261dde1d8f73c89433de26a2636baf /home/ebisu/core/filesystem/default.nix
parenthome: add html2md (diff)
downloadnixos-config-33cb02e80c2250f12dc5f2ac99a9f63695b66521.tar.xz
nixos-config-33cb02e80c2250f12dc5f2ac99a9f63695b66521.zip
home: move some modules to core
Diffstat (limited to 'home/ebisu/core/filesystem/default.nix')
-rw-r--r--home/ebisu/core/filesystem/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/home/ebisu/core/filesystem/default.nix b/home/ebisu/core/filesystem/default.nix
new file mode 100644
index 0000000..394cc04
--- /dev/null
+++ b/home/ebisu/core/filesystem/default.nix
@@ -0,0 +1,22 @@
+{ pkgs, ... }:
+{
+ imports = [
+ ./core
+ ./archive.nix
+ ];
+
+ programs = {
+ nnn.enable = true;
+ # lf.enable = true;
+ };
+
+ home.packages = with pkgs; [
+ nemo
+ dust
+ dysk
+ ncdu
+ file
+ yazi
+ broot
+ ];
+}