diff options
Diffstat (limited to 'archetypes/collections/utilities.nix')
-rw-r--r-- | archetypes/collections/utilities.nix | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/archetypes/collections/utilities.nix b/archetypes/collections/utilities.nix new file mode 100644 index 0000000..85763a4 --- /dev/null +++ b/archetypes/collections/utilities.nix @@ -0,0 +1,35 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + crazydiskinfo + dash # TODO should be default /bin/sh + entr + fastfetch + ffmpeg + htop + jq + light + lm_sensors + mediainfo + neovim + nmap + openssl + p7zip + powertop + pv + rsync + screen + smartmontools + sslscan + stress + testdisk + tmux + uhubctl + vimv-rs + wget + wireguard-tools + xxHash + yt-dlp + ]; + + services.gpm.enable = true; +} |