nixos-config/system/programs/tools.nix

28 lines
388 B
Nix

{
pkgs,
config,
...
}: {
environment.systemPackages = with pkgs; [
vim
htop
btop
wget
ripgrep
nethogs
ffmpeg-full
parted
busybox
file
lm_sensors
fd # find replacement
graphviz-nox
(
if config.nixpkgs.config.allowUnfree
then p7zip-rar
else p7zip
)
unar
openssl # for generating passwords
];
}