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