clan.deployment: unify deprecated option

This commit is contained in:
Johannes Kirschbauer
2025-07-02 18:17:03 +02:00
parent dfb53deeca
commit b1f71fe4fb
5 changed files with 17 additions and 33 deletions

View File

@@ -304,14 +304,14 @@ clan {
### Excluding from Automatic Updates
To exclude machines from being updated when running `clan machines update` without any machines specified,
one can set the `clan.deployment.requireExplicitUpdate` option to true:
one can set the `clan.core.deployment.requireExplicitUpdate` option to true:
```{.nix hl_lines="5" .no-copy}
clan {
# ...
machines = {
"jon" = {
clan.deployment.requireExplicitUpdate = true;
clan.core.deployment.requireExplicitUpdate = true;
};
};
};