nixos/auto-upgrade: correct typo in assertion message (#295125)

This commit is contained in:
Artturin
2024-09-25 20:41:02 +03:00
committed by GitHub

View File

@@ -168,7 +168,7 @@ in {
assertions = [{ assertions = [{
assertion = !((cfg.channel != null) && (cfg.flake != null)); assertion = !((cfg.channel != null) && (cfg.flake != null));
message = '' message = ''
The options 'system.autoUpgrade.channels' and 'system.autoUpgrade.flake' cannot both be set. The options 'system.autoUpgrade.channel' and 'system.autoUpgrade.flake' cannot both be set.
''; '';
}]; }];