29 lines
265 B
Nix
29 lines
265 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
wget
|
|
bottom
|
|
nvtopPackages.full
|
|
uutils-coreutils
|
|
nixfmt
|
|
nixfmt-tree
|
|
|
|
zip
|
|
unzip
|
|
|
|
ripgrep
|
|
eza
|
|
fastfetch
|
|
ffmpeg
|
|
|
|
rsync
|
|
];
|
|
|
|
}
|