27 lines
349 B
Nix
27 lines
349 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
|
|
];
|
|
}
|