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.activation = mkIf cfg.createDirectories {
|
||||
createXdgUserDirectories = let
|
||||
directoriesList = attrValues directories;
|
||||
mkdir = (dir: ''$DRY_RUN_CMD mkdir -p $VERBOSE_ARG "${dir}"'');
|
||||
in lib.hm.dag.entryAfter [ "writeBoundary" ]
|
||||
(strings.concatMapStringsSep "\n" mkdir directoriesList);
|
||||
};
|
||||
home.activation.createXdgUserDirectories = mkIf cfg.createDirectories (let
|
||||
directoriesList = attrValues directories;
|
||||
mkdir = (dir: ''$DRY_RUN_CMD mkdir -p $VERBOSE_ARG "${dir}"'');
|
||||
in lib.hm.dag.entryAfter [ "linkGeneration" ]
|
||||
(strings.concatMapStringsSep "\n" mkdir directoriesList));
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue