diff options
| author | Michael Hoang <Enzime@users.noreply.github.com> | 2024-10-20 11:07:25 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-20 11:07:25 +1100 |
| commit | a001f44cfc47164839eb61c6b1e7f4288813f7e8 (patch) | |
| tree | d30408dab18b615d798622dfdec69e14437ef09c /modules | |
| parent | a60ac02f9466f85f092e576fd8364dfc4406b5a6 (diff) | |
| parent | 4054d5caea22367763a8cc7781d5723e86e3d1fb (diff) | |
Merge pull request #992 from emmceemoore/software-update-fix
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 c109767..e7f2c03 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"; |
