This commit is contained in:
DavHau
2025-07-04 10:35:30 +07:00
parent 631d17b6e9
commit 969b7606a6
4 changed files with 32 additions and 17 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.core.deployment.requireExplicitUpdate` option to true:
one can set the `clan.deployment.requireExplicitUpdate` option to true:
```{.nix hl_lines="5" .no-copy}
clan {
# ...
machines = {
"jon" = {
clan.core.deployment.requireExplicitUpdate = true;
clan.deployment.requireExplicitUpdate = true;
};
};
};