all repos — archive/nixos-configuration @ fc361bf760dc3ea9ef657d4f16ecce7bbc5b4660

Superseded by nixfiles

nix: Fix double auto-upgrade

Alan Pearce
commit

fc361bf760dc3ea9ef657d4f16ecce7bbc5b4660

parent

18c8166b4feaae28e604cd2958e3696c49b77b69

1 file changed, 1 insertion(+), 1 deletion(-)

jump to
M modules/configuration/nix.nixmodules/configuration/nix.nix
@@ -25,7 +25,7 @@ system.autoUpgrade = {
enable = true; }; systemd.services.nixos-upgrade = { - script = '' + script = pkgs.lib.mkForce '' ${config.system.build.nixos-rebuild}/bin/nixos-rebuild boot ${toString config.system.autoUpgrade.flags} ''; };