mirror of
https://github.com/nix-community/home-manager
synced 2024-11-20 10:09:45 +01:00
xdg-user-dirs: create directories after linkGeneration
In the scenario where some XDG user directory is a symlink defined by `home.file`, we want the symlink to be created before we try to `mkdir -p` that directory, as it will then silently succeed. On the other hand, if we create the directory first, creating the symlink will fail. We lose nothing by doing this as `linkGeneration` creates the directories it needs.
This commit is contained in:
parent
8419dfd39d
commit
dbed4c794d
1 changed files with 5 additions and 7 deletions
|
@ -120,12 +120,10 @@ in {
|
||||||
|
|
||||||
home.sessionVariables = directories;
|
home.sessionVariables = directories;
|
||||||
|
|
||||||
home.activation = mkIf cfg.createDirectories {
|
home.activation.createXdgUserDirectories = mkIf cfg.createDirectories (let
|
||||||
createXdgUserDirectories = let
|
|
||||||
directoriesList = attrValues directories;
|
directoriesList = attrValues directories;
|
||||||
mkdir = (dir: ''$DRY_RUN_CMD mkdir -p $VERBOSE_ARG "${dir}"'');
|
mkdir = (dir: ''$DRY_RUN_CMD mkdir -p $VERBOSE_ARG "${dir}"'');
|
||||||
in lib.hm.dag.entryAfter [ "writeBoundary" ]
|
in lib.hm.dag.entryAfter [ "linkGeneration" ]
|
||||||
(strings.concatMapStringsSep "\n" mkdir directoriesList);
|
(strings.concatMapStringsSep "\n" mkdir directoriesList));
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue