fix(lib/install-nix): use elevated privileges to create /etc/nix

This commit is contained in:
Bernardo Meurer 2022-03-10 14:28:37 -08:00
parent b2b9fc6cf9
commit 8ae0a9f653

View file

@ -43,7 +43,8 @@ else
# "fix" the following error when running nix* # "fix" the following error when running nix*
# error: the group 'nixbld' specified in 'build-users-group' does not exist # error: the group 'nixbld' specified in 'build-users-group' does not exist
add_config "build-users-group =" add_config "build-users-group ="
mkdir -m 0755 /etc/nix sudo mkdir -p /etc/nix
sudo chmod 0755 /etc/nix
cp $workdir/nix.conf /etc/nix/nix.conf cp $workdir/nix.conf /etc/nix/nix.conf
fi fi