mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-22 19:41:30 +00:00
autoUpgrade.enable = false by default
This commit is contained in:
parent
0f54898cb8
commit
72d73b6297
|
@ -24,7 +24,7 @@ with lib;
|
||||||
autoUpgrade = {
|
autoUpgrade = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
description = "Enable auto-upgrade of the server.";
|
description = "Enable auto-upgrade of the server.";
|
||||||
default = true;
|
default = false;
|
||||||
type = types.nullOr types.bool;
|
type = types.nullOr types.bool;
|
||||||
};
|
};
|
||||||
allowReboot = mkOption {
|
allowReboot = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue