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
commit ecd4ea0ab2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -168,7 +168,7 @@ in {
assertions = [{
assertion = !((cfg.channel != null) && (cfg.flake != null));
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.
'';
}];