1
0
Fork 0
nixos-config/system/server.nix
2018-05-29 21:52:35 +02:00

22 lines
387 B
Nix

{ config, pkgs, ... }:
{
options = {
m-0.server.enable = mkOption {
type = types.bool;
};
};
config = mkIf config.m-0.server.enable {
nix = {
gc = {
automatic = true;
options = "--delete-older-than 5d";
};
optimise.automatic = true;
};
system.autoUpgrade.enable = true;
system.autoUpgrade.dates = "22:00";
};
}