nixos auto-upgrade: remove flag when flake

The `--no-build-output` flag that is added by default is only valid
for the old cli, which is not used when flakes are used.

Follow-up to c9daa81eff.
wip/yesman
Frederik Rietdijk 4 years ago
parent 6cea12ccff
commit 5790bb073f
  1. 5
      nixos/modules/tasks/auto-upgrade.nix

@ -109,9 +109,8 @@ in {
'';
}];
system.autoUpgrade.flags = [ "--no-build-output" ]
++ (if cfg.flake == null then
(if cfg.channel == null then
system.autoUpgrade.flags = (if cfg.flake == null then
[ "--no-build-output" ] ++ (if cfg.channel == null then
[ "--upgrade" ]
else [
"-I"

Loading…
Cancel
Save