19 lines
248 B
Nix
19 lines
248 B
Nix
{ pkgs, ... }: {
|
|
|
|
imports = [ ./common.nix ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
inetutils
|
|
vim
|
|
];
|
|
nix = {
|
|
gc = {
|
|
persistent = true;
|
|
};
|
|
|
|
settings = {
|
|
trusted-users = [ "root" "walkah" ];
|
|
};
|
|
};
|
|
}
|