From 2d26ca545e62c0c7de24631644f119da8929fcd2 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Wed, 13 Jul 2022 14:02:35 +0300 Subject: [PATCH] Add channel for autoupgrades --- configuration.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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 +}