diff --git a/hosts/goopnet-interface/default.nix b/hosts/goopnet-interface/default.nix index ab96dc9..05fd678 100755 --- a/hosts/goopnet-interface/default.nix +++ b/hosts/goopnet-interface/default.nix @@ -21,7 +21,7 @@ # compatibility wineWowPackages.waylandFull winetricks # misc - bat file which tree prismlauncher yt-dlp wl-screenrec + bat file which prismlauncher yt-dlp wl-screenrec ] ++ (with pkgs.my; [ # none yet ]) ++ (with pkgs.gnome; [ @@ -75,8 +75,9 @@ distractions.discord.vesktop = true; distractions.steam.enable = true; # tools - tools.mpv.enable = true; + tools.eza.enable = true; tools.gpg.enable = true; + tools.mpv.enable = true; }; }; diff --git a/modules/software/tools/eza.nix b/modules/software/tools/eza.nix new file mode 100644 index 0000000..d510bd6 --- /dev/null +++ b/modules/software/tools/eza.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, ... }: + +with lib; +let + cfg = config.modules.software.tools.eza; +in { + options.modules.software.tools.eza = { + enable = mkEnableOption "Enable eza, a modern replacement for ls"; + }; + + config = mkIf cfg.enable { + hm.programs.eza.enable = true; + hm.programs.eza.git = true; + }; +} \ No newline at end of file