diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2020-01-21 12:22:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-21 12:22:17 +0100 |
| commit | a14315c96edcedddab74af8353cfec3017a8157d (patch) | |
| tree | 5b058412b40c907c6f013a95bfbdc7fd68cf004b /modules/system/defaults/SoftwareUpdate.nix | |
| parent | 3b3ae7ab7dd0f8a7534eedd52ea53dd98e395651 (diff) | |
| parent | 39bc7bb131a98f20bd57ef5ebe107e2e955a8c96 (diff) | |
Merge pull request #175 from treffynnon/more-system-defaults
[system.defaults] more sound, firewall/alf, spaces, loginwindow, SoftwareUpdate
Diffstat (limited to 'modules/system/defaults/SoftwareUpdate.nix')
| -rw-r--r-- | modules/system/defaults/SoftwareUpdate.nix | 15 |
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. + ''; + }; + }; +} |
