nixos-config/systemProfiles/programs/tools.nix
2024-10-25 10:39:48 +02:00

24 lines
312 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
p7zip
unar
openssl # for generating passwords
];
}