diff options
| author | Simon Holywell <simon@holywell.com.au> | 2019-11-04 14:54:31 +1000 |
|---|---|---|
| committer | Simon Holywell <simon@holywell.com.au> | 2019-11-04 14:54:31 +1000 |
| commit | 42c8f9bce3d0580cd3f155ef29e3f779ac716c5b (patch) | |
| tree | b7a302609c1739afb70201c473d1a2cc8b4c3dbd | |
| parent | 6100c826d40cd6b97ad8f3ddde4c2219c4ea637b (diff) | |
adds com.apple.SoftwareUpdate
| -rw-r--r-- | modules/module-list.nix | 1 | ||||
| -rw-r--r-- | modules/system/defaults-write.nix | 4 | ||||
| -rw-r--r-- | modules/system/defaults/SoftwareUpdate.nix | 15 |
3 files changed, 19 insertions, 1 deletions
diff --git a/modules/module-list.nix b/modules/module-list.nix index f3019d2..cb38af0 100644 --- a/modules/module-list.nix +++ b/modules/module-list.nix @@ -17,6 +17,7 @@ ./system/defaults/alf.nix ./system/defaults/loginwindow.nix ./system/defaults/smb.nix + ./system/defaults/SoftwareUpdate.nix ./system/defaults/spaces.nix ./system/defaults/trackpad.nix ./system/etc.nix diff --git a/modules/system/defaults-write.nix b/modules/system/defaults-write.nix index adbe939..6c79138 100644 --- a/modules/system/defaults-write.nix +++ b/modules/system/defaults-write.nix @@ -29,6 +29,7 @@ let alf = defaultsToList "/Library/Preferences/com.apple.alf" cfg.alf; loginwindow = defaultsToList "/Library/Preferences/com.apple.loginwindow" cfg.loginwindow; smb = defaultsToList "/Library/Preferences/SystemConfiguration/com.apple.smb.server" cfg.smb; + SoftwareUpdate = defaultsToList "/Library/Preferences/SystemConfiguration/com.apple.SoftwareUpdate" cfg.SoftwareUpdate; screencapture = defaultsToList "com.apple.screencapture" cfg.screencapture; spaces = defaultsToList "com.apple.spaces" cfg.spaces; trackpad = defaultsToList "com.apple.AppleMultitouchTrackpad" cfg.trackpad; @@ -40,13 +41,14 @@ in { config = { - system.activationScripts.defaults.text = mkIfAttrs [ alf loginwindow smb ] + system.activationScripts.defaults.text = mkIfAttrs [ alf loginwindow smb SoftwareUpdate ] '' # Set defaults echo >&2 "system defaults..." ${concatStringsSep "\n" alf} ${concatStringsSep "\n" loginwindow} ${concatStringsSep "\n" smb} + ${concatStringsSep "\n" SoftwareUpdate} ''; system.activationScripts.userDefaults.text = mkIfAttrs diff --git a/modules/system/defaults/SoftwareUpdate.nix b/modules/system/defaults/SoftwareUpdate.nix new file mode 100644 index 0000000..ec89bce --- /dev/null +++ b/modules/system/defaults/SoftwareUpdate.nix @@ -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. + ''; + }; + }; +} |
