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