14 lines
178 B
Nix
14 lines
178 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
htop
|
|
btop
|
|
wget
|
|
ripgrep
|
|
nethogs
|
|
ffmpeg-full
|
|
parted
|
|
pciutils
|
|
usbutils
|
|
];
|
|
}
|