diff options
author | Alan Pearce | 2025-03-20 09:57:13 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-20 09:57:13 +0100 |
commit | 482e03429e03f36cb79079f22cb2c07f7a051caa (patch) | |
tree | 3a269b29bd3ed00b807af5d52a51e11bbd877f4a | |
parent | 82f7639c8527a04746443fc134a8773bfa7a7c52 (diff) | |
download | nixfiles-482e03429e03f36cb79079f22cb2c07f7a051caa.tar.lz nixfiles-482e03429e03f36cb79079f22cb2c07f7a051caa.tar.zst nixfiles-482e03429e03f36cb79079f22cb2c07f7a051caa.zip |
add dirstat-rs (alias ds)
m--------- | packages | 0 | ||||
-rw-r--r-- | user/settings/fish.nix | 2 | ||||
-rw-r--r-- | user/settings/shell.nix | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/packages b/packages -Subproject 37a4d86b7ab22d689577446be45b2b4106cf8bb +Subproject 951422f947dec61a2416b3e1f86639a7dcb5b9b diff --git a/user/settings/fish.nix b/user/settings/fish.nix index 574c74d3..7695504a 100644 --- a/user/settings/fish.nix +++ b/user/settings/fish.nix @@ -50,7 +50,7 @@ }; }; functions = { - ds = "du -hd1 $argv[1] | sort -h"; + dus = "du -hd1 $argv[1] | sort -h"; last_history_item = "echo $history[1]"; }; }; diff --git a/user/settings/shell.nix b/user/settings/shell.nix index 9807169d..cc436038 100644 --- a/user/settings/shell.nix +++ b/user/settings/shell.nix @@ -31,6 +31,7 @@ in cg = "cd $(git root)"; cdg = "cd $(git root)"; + ds = "dirstat-rs"; fs = "bfs -nohidden"; http = "xh"; @@ -144,6 +145,7 @@ in }; }; home.packages = with pkgs; [ + personal.dirstat-rs fzf ]; } |