mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01: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:
parent
117a4b9cfa
commit
433584ee97
1 changed files with 3 additions and 3 deletions
|
@ -155,10 +155,10 @@ in {
|
||||||
home.file.".icons/${cfg.name}".source =
|
home.file.".icons/${cfg.name}".source =
|
||||||
"${cfg.package}/share/icons/${cfg.name}";
|
"${cfg.package}/share/icons/${cfg.name}";
|
||||||
|
|
||||||
# Add cursor icon link to $XDG_DATA_HOME as well for redundancy.
|
# Add cursor icon link to $XDG_DATA_HOME/icons as well for redundancy.
|
||||||
xdg.dataFile.".icons/default/index.theme".source =
|
xdg.dataFile."icons/default/index.theme".source =
|
||||||
"${defaultIndexThemePackage}/share/icons/default/index.theme";
|
"${defaultIndexThemePackage}/share/icons/default/index.theme";
|
||||||
xdg.dataFile.".icons/${cfg.name}".source =
|
xdg.dataFile."icons/${cfg.name}".source =
|
||||||
"${cfg.package}/share/icons/${cfg.name}";
|
"${cfg.package}/share/icons/${cfg.name}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue