mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00: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
c067d57fc4
commit
76e7c05f7d
1 changed files with 3 additions and 3 deletions
|
@ -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}";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue