1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00

home-cursor: fix typo in XDG data directory link

This commit fixes a typo in XDG data directory link location in the
`home.pointerCursor` module where the link is placed at
$XDG_DATA_HOME/.icons instead of the correct location
$XDG_DATA_HOME/icons.

Fixes #4638
This commit is contained in:
polykernel 2023-11-06 13:54:36 -05:00 committed by Robert Helgesson
parent c067d57fc4
commit 76e7c05f7d
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -155,10 +155,10 @@ in {
home.file.".icons/${cfg.name}".source =
"${cfg.package}/share/icons/${cfg.name}";
# Add cursor icon link to $XDG_DATA_HOME as well for redundancy.
xdg.dataFile.".icons/default/index.theme".source =
# Add cursor icon link to $XDG_DATA_HOME/icons as well for redundancy.
xdg.dataFile."icons/default/index.theme".source =
"${defaultIndexThemePackage}/share/icons/default/index.theme";
xdg.dataFile.".icons/${cfg.name}".source =
xdg.dataFile."icons/${cfg.name}".source =
"${cfg.package}/share/icons/${cfg.name}";
}