athens/modules/base/default.nix
2023-01-31 22:01:21 -05:00

19 lines
248 B
Nix

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