adds com.apple.SoftwareUpdate
This commit is contained in:
parent
6100c826d4
commit
42c8f9bce3
3 changed files with 19 additions and 1 deletions
15
modules/system/defaults/SoftwareUpdate.nix
Normal file
15
modules/system/defaults/SoftwareUpdate.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
options = {
|
||||
system.defaults.SoftwareUpdate.AutomaticallyInstallMacOSUpdates = mkOption {
|
||||
type = types.nullOr types.bool;
|
||||
default = null;
|
||||
description = ''
|
||||
Automatically install Mac OS software updates. Defaults to false.
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue