diff options
Diffstat (limited to 'modules/root/software/utilities.nix')
-rw-r--r-- | modules/root/software/utilities.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/modules/root/software/utilities.nix b/modules/root/software/utilities.nix new file mode 100644 index 0000000..dabf163 --- /dev/null +++ b/modules/root/software/utilities.nix @@ -0,0 +1,32 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + entr + fastfetch + ffmpeg + htop + jq + light + lm_sensors + mediainfo + neovim + nmap + openssl + p7zip + powertop + pv + rsync + screen + smartmontools + sslscan + stress + testdisk + tmux + uhubctl + wget + wireguard-tools + xxHash + yt-dlp + (callPackage ./derivations/lowbat {}) + (callPackage ./derivations/pavolctld {}) + ]; +} |