28 lines
395 B
Nix
28 lines
395 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
|
|
];
|
|
}
|