From e2ddef363da1be4ff70eb456ac020561387bf032 Mon Sep 17 00:00:00 2001 From: Wang Siyuan Date: Fri, 5 Dec 2025 12:23:04 +0000 Subject: [PATCH] Do not use Nix build users (nixbld*) --- distro/modules/core.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 = [ ]; }; }