all repos — nixfiles @ 482e03429e03f36cb79079f22cb2c07f7a051caa

System and user configuration, managed by nix and home-manager

add dirstat-rs (alias ds)
Alan Pearce alan@alanpearce.eu
Thu, 20 Mar 2025 09:57:13 +0100
commit

482e03429e03f36cb79079f22cb2c07f7a051caa

parent

82f7639c8527a04746443fc134a8773bfa7a7c52

2 files changed, 3 insertions(+), 1 deletions(-)

jump to
M user/settings/fish.nixuser/settings/fish.nix
@@ -50,7 +50,7 @@ function = "last_history_item";       };
     };
     functions = {
-      ds = "du -hd1 $argv[1] | sort -h";
+      dus = "du -hd1 $argv[1] | sort -h";
       last_history_item = "echo $history[1]";
     };
   };
M user/settings/shell.nixuser/settings/shell.nix
@@ -31,6 +31,7 @@ "c," = "cd ${config.home.homeDirectory + "/projects/alanpearce.eu/nixfiles"}";       cg = "cd $(git root)";
       cdg = "cd $(git root)";
 
+      ds = "dirstat-rs";
       fs = "bfs -nohidden";
 
       http = "xh";
@@ -144,6 +145,7 @@ sngc = "sudo nix-collect-garbage --delete-older-than 30d";     };
   };
   home.packages = with pkgs; [
+    personal.dirstat-rs
     fzf
   ];
 }