diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix index 8e600aa..acb53fc 100644 --- a/modules/home-manager/shell.nix +++ b/modules/home-manager/shell.nix @@ -8,6 +8,7 @@ zsh # Tools + shell-tools files docker ]; @@ -24,4 +25,17 @@ ls = "${lib.getExe pkgs.eza} -lgos type --no-time --follow-symlinks"; }; }; + + flake.homeModules.shell-tools = {pkgs, ...}: { + home.packages = with pkgs; [ + wget + curl + cacert + busybox + gnugrep + dig + btop + uv + ]; + }; }