diff options
-rw-r--r-- | custom/dotfiles.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/dotfiles.nix b/custom/dotfiles.nix index 08952c39..6b55dd55 100644 --- a/custom/dotfiles.nix +++ b/custom/dotfiles.nix | |||
@@ -17,7 +17,7 @@ let | |||
17 | cd ${dotfiles} | 17 | cd ${dotfiles} |
18 | ${findutils}/bin/find . -type d -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ${coreutils}/install -o ${name.owner} -g ${name.group} -d "${name.dir}/{}" | 18 | ${findutils}/bin/find . -type d -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ${coreutils}/install -o ${name.owner} -g ${name.group} -d "${name.dir}/{}" |
19 | ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ln -s -f "${dotfiles}/{}" "${name.dir}/{}" | 19 | ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ln -s -f "${dotfiles}/{}" "${name.dir}/{}" |
20 | ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- chown "${name.owner}:${name.group}" "${name.dir}/{}" | 20 | ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- chown -h "${name.owner}:${name.group}" "${name.dir}/{}" |
21 | ''; | 21 | ''; |
22 | }; | 22 | }; |
23 | in | 23 | in |