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