diff --git a/configuration.nix b/configuration.nix index 5b68de8..adfc580 100644 --- a/configuration.nix +++ b/configuration.nix @@ -62,8 +62,11 @@ in environment.variables = { DOMAIN = config.services.userdata.domain; }; - system.autoUpgrade.enable = config.services.userdata.autoUpgrade.enable; - system.autoUpgrade.allowReboot = config.services.userdata.autoUpgrade.allowReboot; + system.autoUpgrade = { + enable = config.services.userdata.autoUpgrade.enable; + allowReboot = config.services.userdata.autoUpgrade.allowReboot; + channel = "https://channel.selfprivacy.org/nixos-selfpricacy"; + }; nix = { optimise.automatic = true; gc = { @@ -86,4 +89,4 @@ in enable = true; }; }; -} \ No newline at end of file +}