diff --git a/distro/modules/core.nix b/distro/modules/core.nix index 8611c322a..b462a1668 100644 --- a/distro/modules/core.nix +++ b/distro/modules/core.nix @@ -35,7 +35,7 @@ in { ${builtins.getEnv "NIXOS_STAGE_2_INIT"} fi ''; - # Execute test-command on hvc0 console after boot if the test-command is + # Execute test-command on hvc0 console after boot if the test-command is # not empty (for CI testing). environment.loginShellInit = lib.mkIf ("${builtins.getEnv "NIXOS_TEST_COMMAND"}" != "") '' @@ -67,5 +67,8 @@ in { filter-syscalls = false; require-sigs = false; sandbox = false; + # FIXME: Support Nix build users (nixbld*) and remove this setting. For detailed gaps, see + # . + build-users-group = [ ]; }; }