1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-07-14 16:00:36 +03:00

Merge pull request #978 from usertam/patch/no-verify-nixbld

checks.nix: disable verifyBuildUsers for auto-allocate-uids
This commit is contained in:
Emily 2024-06-23 08:37:34 +01:00 committed by GitHub
commit 50581970f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -220,7 +220,7 @@ in
system.checks.verifyBuildUsers = mkOption {
type = types.bool;
default = true;
default = !(config.nix.settings.auto-allocate-uids or false);
description = "Whether to run the Nix build users validation checks.";
};