diff options
author | Alan Pearce | 2023-04-02 20:27:15 +0200 |
---|---|---|
committer | Alan Pearce | 2023-04-02 20:27:15 +0200 |
commit | 14e573db264debf99046142ce9a72f41ccdf3baa (patch) | |
tree | 67502a14cfee32b9ab9c3c48cb344fe0783be87c | |
parent | 74faf88c4f59a235c598cc9fdc76b2e07b9e4c39 (diff) | |
download | nixfiles-14e573db264debf99046142ce9a72f41ccdf3baa.tar.lz nixfiles-14e573db264debf99046142ce9a72f41ccdf3baa.tar.zst nixfiles-14e573db264debf99046142ce9a72f41ccdf3baa.zip |
darwin: let GUI applications know about XDG_CACHE_HOME
-rw-r--r-- | user/settings/darwin.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/user/settings/darwin.nix b/user/settings/darwin.nix index fb6cf196..2ca4ddf6 100644 --- a/user/settings/darwin.nix +++ b/user/settings/darwin.nix @@ -63,6 +63,21 @@ LowPriorityBackgroundIO = true; }; }; + set-xdg-cache-home = { + enable = true; + + config = { + ProgramArguments = [ + "/bin/launchctl" + "setenv" + "XDG_CACHE_HOME" + config.xdg.cacheHome + ]; + RunAtLoad = true; + StandardErrorPath = "/dev/null"; + StandardOutputPath = "/dev/null"; + }; + }; }; programs.zsh.shellAliases = { |