mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-30 14:31:27 +00:00
Add channel for autoupgrades
This commit is contained in:
parent
3884d97240
commit
2d26ca545e
|
@ -62,8 +62,11 @@ in
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
DOMAIN = config.services.userdata.domain;
|
DOMAIN = config.services.userdata.domain;
|
||||||
};
|
};
|
||||||
system.autoUpgrade.enable = config.services.userdata.autoUpgrade.enable;
|
system.autoUpgrade = {
|
||||||
system.autoUpgrade.allowReboot = config.services.userdata.autoUpgrade.allowReboot;
|
enable = config.services.userdata.autoUpgrade.enable;
|
||||||
|
allowReboot = config.services.userdata.autoUpgrade.allowReboot;
|
||||||
|
channel = "https://channel.selfprivacy.org/nixos-selfpricacy";
|
||||||
|
};
|
||||||
nix = {
|
nix = {
|
||||||
optimise.automatic = true;
|
optimise.automatic = true;
|
||||||
gc = {
|
gc = {
|
||||||
|
|
Loading…
Reference in a new issue