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