summaryrefslogtreecommitdiff
path: root/config/system.nix
blob: 5b6ba5fb00e787d716020555a76c0bc14994da56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{...}: {
  personal.system = {
    flake = "git+file:///etc/nixos/";
    autoUpgrade = {
      enable = true;
      remoteBuilding = {
        enable = true;
        builder.domain = "local";
      };
    };
  };

  system.autoUpgrade = {
    allowReboot = true;
    dates = "02:00";
  };
}