nixos-config/system/programs/tools.nix
2024-08-22 17:07:44 +02:00

25 lines
325 B
Nix

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