16 lines
162 B
Nix
16 lines
162 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [
|
|
atop
|
|
btop
|
|
btrfs-progs
|
|
compsize
|
|
fd
|
|
htop
|
|
tmux
|
|
vim
|
|
];
|
|
}
|