mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
xdg-user-dirs: fix erroneous dirs file
Before this change, ```rust fn main() { println!("{:?}", glib::get_user_special_dir(glib::UserDirectory::Documents)); } ``` would return `None` even though `~/Documents` is available and `xdg.userDirs.enable = true`. Checking the differences between `xdg-user-dirs-update` shows that the latter has quotes around each thing. PR #1440
This commit is contained in:
parent
ae8f432a75
commit
fceef469c2
1 changed files with 15 additions and 10 deletions
|
@ -89,7 +89,8 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
xdg.configFile."user-dirs.dirs".text = generators.toKeyValue { } ({
|
xdg.configFile."user-dirs.dirs".text = let
|
||||||
|
options = {
|
||||||
XDG_DESKTOP_DIR = cfg.desktop;
|
XDG_DESKTOP_DIR = cfg.desktop;
|
||||||
XDG_DOCUMENTS_DIR = cfg.documents;
|
XDG_DOCUMENTS_DIR = cfg.documents;
|
||||||
XDG_DOWNLOAD_DIR = cfg.download;
|
XDG_DOWNLOAD_DIR = cfg.download;
|
||||||
|
@ -98,7 +99,11 @@ in {
|
||||||
XDG_PUBLICSHARE_DIR = cfg.publicShare;
|
XDG_PUBLICSHARE_DIR = cfg.publicShare;
|
||||||
XDG_TEMPLATES_DIR = cfg.templates;
|
XDG_TEMPLATES_DIR = cfg.templates;
|
||||||
XDG_VIDEOS_DIR = cfg.videos;
|
XDG_VIDEOS_DIR = cfg.videos;
|
||||||
} // cfg.extraConfig);
|
} // cfg.extraConfig;
|
||||||
|
|
||||||
|
# For some reason, these need to be wrapped with quotes to be valid.
|
||||||
|
wrapped = mapAttrs (_: value: ''"${value}"'') options;
|
||||||
|
in generators.toKeyValue { } wrapped;
|
||||||
|
|
||||||
xdg.configFile."user-dirs.conf".text = "enabled=False";
|
xdg.configFile."user-dirs.conf".text = "enabled=False";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue