all: allowReboot = true by default

This commit is contained in:
Aaron Bieber 2022-11-08 14:54:41 -07:00
parent be758b50ed
commit cd56a4ec12
No known key found for this signature in database
7 changed files with 3 additions and 6 deletions

View File

@ -795,7 +795,6 @@ in {
programs.zsh.enable = true;
system.autoUpgrade.allowReboot = true;
system.stateVersion = "20.03";
}

View File

@ -195,5 +195,6 @@ in {
}
];
system.autoUpgrade.allowReboot = false;
system.stateVersion = "21.11";
}

View File

@ -119,7 +119,6 @@ in {
};
};
system.autoUpgrade.allowReboot = true;
system.stateVersion = "21.11"; # Did you read the comment?
}

View File

@ -32,8 +32,6 @@ in {
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
system.autoUpgrade.allowReboot = true;
boot.kernelParams = [ "net.ifnames=0" ];
tailscale.sshOnly = true;

View File

@ -157,6 +157,7 @@ in {
};
};
system.autoUpgrade.allowReboot = false;
system.stateVersion = "22.05"; # Did you read the comment?
}

View File

@ -194,6 +194,5 @@ in {
nix-top
];
system.autoUpgrade.allowReboot = true;
system.stateVersion = "21.11";
}

View File

@ -16,7 +16,7 @@ with lib; {
system.autoUpgrade = {
# enable is set in flake depending on the state of the tree
# DIRTY means disabled, git revision means enabled
allowReboot = mkDefault false;
allowReboot = mkDefault true;
flake = "github:qbit/xin";
dates = "*-*-* *:05:00";
};