mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 00:20:53 +00:00
Merge pull request #125 from lovesegfault/master
fix(lib/install-nix): use elevated privileges to create /etc/nix
This commit is contained in:
commit
c5300121f7
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue