nixos/auto-upgrade: correct typo in assertion message

This commit is contained in:
Andrew Kvalheim 2024-03-11 14:12:36 -07:00
parent bf8462aeba
commit 6e8f91da32

View file

@ -171,7 +171,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.
'';
}];