athens/modules/base/default.nix

25 lines
346 B
Nix

_: {
imports = [ ./common.nix ];
nix = {
gc = {
persistent = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
settings = {
auto-optimise-store = true;
trusted-users = [ "root" "walkah" ];
};
};
programs = {
mosh.enable = true;
};
system.stateVersion = "23.05";
}