summaryrefslogtreecommitdiff
path: root/modules/system/defaults/SoftwareUpdate.nix
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/defaults/SoftwareUpdate.nix
parent6100c826d40cd6b97ad8f3ddde4c2219c4ea637b (diff)
adds com.apple.SoftwareUpdate
Diffstat (limited to 'modules/system/defaults/SoftwareUpdate.nix')
-rw-r--r--modules/system/defaults/SoftwareUpdate.nix15
1 files changed, 15 insertions, 0 deletions
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.
+ '';
+ };
+ };
+}