summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorSimon Holywell <simon@holywell.com.au>2019-11-04 14:54:31 +1000
committerSimon Holywell <simon@holywell.com.au>2019-11-04 14:54:31 +1000
commit42c8f9bce3d0580cd3f155ef29e3f779ac716c5b (patch)
treeb7a302609c1739afb70201c473d1a2cc8b4c3dbd /modules/system
parent6100c826d40cd6b97ad8f3ddde4c2219c4ea637b (diff)
adds com.apple.SoftwareUpdate
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults-write.nix4
-rw-r--r--modules/system/defaults/SoftwareUpdate.nix15
2 files changed, 18 insertions, 1 deletions
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.
+ '';
+ };
+ };
+}