Merge pull request 'clan.deployment: unify deprecated options' (#4184) from cli-fix into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4184
This commit is contained in:
hsjobeki
2025-07-02 16:48:19 +00:00
6 changed files with 18 additions and 41 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;
};
};
};