When running as root, use build users by default

This removes the need to have a nix.conf, and prevents people from
accidentally running Nix builds as root.
This commit is contained in:
Eelco Dolstra 2014-05-02 12:46:03 +02:00
parent eeffdb74dc
commit ada3e3fa15
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ Settings::Settings()
useSQLiteWAL = true;
syncBeforeRegistering = false;
useSubstitutes = true;
buildUsersGroup = getuid() == 0 ? "nixbld" : "";
useChroot = false;
useSshSubstituter = false;
impersonateLinux26 = false;