nixos/xdg/icons: match XCURSOR_PATH spec

This commit is contained in:
worldofpeace
2019-09-18 13:03:14 -04:00
parent 760b677c19
commit b3f4ce351e
2 changed files with 14 additions and 4 deletions
+14 -3
View File
@@ -19,9 +19,20 @@ with lib;
"/share/pixmaps"
];
environment.profileRelativeSessionVariables = {
XCURSOR_PATH = [ "/share/icons" ];
};
# libXcursor looks for cursors in XCURSOR_PATH
# it mostly follows the spec for icons
# See: https://www.x.org/releases/current/doc/man/man3/Xcursor.3.xhtml Themes
# These are preferred so they come first in the list
environment.sessionVariables.XCURSOR_PATH = [
"$HOME/.icons"
"$HOME/.local/share/icons"
];
environment.profileRelativeSessionVariables.XCURSOR_PATH = [
"/share/icons"
"/share/pixmaps"
];
};
}