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