Define XDG_RUNTIME_DIR

This commit is contained in:
ItsDrike 2024-04-04 23:28:59 +02:00
parent 3ada18683e
commit 4820aeb606
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -11,4 +11,9 @@
dataHome = "${config.home.homeDirectory}/.local/share";
stateHome = "${config.home.homeDirectory}/.local/state";
};
# Set XDG_RUNTIME_DIR manually (not supported via xdg configuration)
home.sessionVariables = {
"XDG_RUNTIME_DIR" = "/run/user/$UID";
};
}