diff options
| author | Mike Moore <emmceemoore@gmail.com> | 2024-07-02 09:40:18 -0700 |
|---|---|---|
| committer | Mike Moore <emmceemoore@gmail.com> | 2024-07-02 09:40:18 -0700 |
| commit | 4054d5caea22367763a8cc7781d5723e86e3d1fb (patch) | |
| tree | d32919c339a7739aae80ec0cec9764c5a8d2f357 /modules | |
| parent | ec12b88104d6c117871fad55e931addac4626756 (diff) | |
Use the correct file location for `SoftwareUpdate` plist.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/system/defaults-write.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/defaults-write.nix b/modules/system/defaults-write.nix index 7e1fc44..c3e2683 100644 --- a/modules/system/defaults-write.nix +++ b/modules/system/defaults-write.nix @@ -14,7 +14,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; + SoftwareUpdate = defaultsToList "/Library/Preferences/com.apple.SoftwareUpdate" cfg.SoftwareUpdate; # userDefaults GlobalPreferences = defaultsToList ".GlobalPreferences" cfg.".GlobalPreferences"; |
