1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-19 06:43:01 +00:00

targets/generic-linux: use home.sessionSearchVariables for XCURSOR_PATH

This commit is contained in:
Thiago Kenji Okada 2025-03-09 12:53:57 +00:00 committed by Austin Horstman
parent 5094e32cce
commit ab56fd8db8

View file

@ -47,13 +47,12 @@ in {
# We need to append system-wide FHS directories due to the default prefix
# resolving to the Nix store.
# https://github.com/nix-community/home-manager/pull/2891#issuecomment-1101064521
home.sessionVariables = {
XCURSOR_PATH = "$XCURSOR_PATH\${XCURSOR_PATH:+:}"
+ lib.concatStringsSep ":" [
"${config.home.profileDirectory}/share/icons"
"/usr/share/icons"
"/usr/share/pixmaps"
];
home.sessionSearchVariables = {
XCURSOR_PATH = [
"${config.home.profileDirectory}/share/icons"
"/usr/share/icons"
"/usr/share/pixmaps"
];
};
home.sessionVariablesExtra = ''