From 2bd63b6e3747d76e1deb83ff1abcffd7ee4fe9c1 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Fri, 3 Jul 2015 22:42:36 +0200 Subject: fixed path to install --- custom/dotfiles.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/dotfiles.nix b/custom/dotfiles.nix index 6b55dd55..4981ac67 100644 --- a/custom/dotfiles.nix +++ b/custom/dotfiles.nix @@ -15,7 +15,7 @@ let name = name.dir; value = '' cd ${dotfiles} - ${findutils}/bin/find . -type d -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ${coreutils}/install -o ${name.owner} -g ${name.group} -d "${name.dir}/{}" + ${findutils}/bin/find . -type d -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ${coreutils}/bin/install -o ${name.owner} -g ${name.group} -d "${name.dir}/{}" ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ln -s -f "${dotfiles}/{}" "${name.dir}/{}" ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- chown -h "${name.owner}:${name.group}" "${name.dir}/{}" ''; -- cgit v1.2.3