13 lines
172 B
Nix
13 lines
172 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
inetutils
|
|
vim
|
|
];
|
|
nix = {
|
|
gc = {
|
|
automatic = true;
|
|
persistent = true;
|
|
};
|
|
};
|
|
}
|