ctucx.git: nixfiles

ctucx' nixfiles

commit c09c01a05c69a60e07cb6ba8a03cd9b23470930f
parent 3c34a1c20021c8f3d820346e7bb28e9c6ccd104f
Author: Katja (ctucx) <git@ctu.cx>
Date: Thu, 20 Mar 2025 15:10:42 +0100

configurations/homeManager/programs/eza: enable icons and git
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/configurations/homeManager/programs/eza.nix b/configurations/homeManager/programs/eza.nix
@@ -2,7 +2,11 @@
 
 {
 
-  home.packages = [ pkgs.eza ];
+  programs.eza = {
+    enable = true;
+    git = true;
+    icons = "auto";
+  };
 
   home.shellAliases = {
     ls   = "eza";