darwin: let GUI applications know about XDG_CACHE_HOME
Alan Pearce alan@alanpearce.eu
Sun, 02 Apr 2023 20:27:15 +0200
1 files changed, 15 insertions(+), 0 deletions(-)
jump to
M user/settings/darwin.nix → user/settings/darwin.nix
@@ -63,6 +63,21 @@ ProcessType = "Background"; 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 = {