adds com.apple.SoftwareUpdate

This commit is contained in:
Simon Holywell 2019-11-04 14:54:31 +10:00
parent 6100c826d4
commit 42c8f9bce3
No known key found for this signature in database
GPG key ID: 3346447094AB9095
3 changed files with 19 additions and 1 deletions

View 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.
'';
};
};
}