buildbot modules: don't put BB users in nixbld group
The nixbld group belongs to nix-daemon and you really don't want to be in it. If you are in it, nix-daemon will kill your processes when you least expect it :)
This commit is contained in:
parent
583c50ddce
commit
c3939cbcf5
@ -118,7 +118,7 @@ in {
|
|||||||
|
|
||||||
extraGroups = mkOption {
|
extraGroups = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
default = [ "nixbld" ];
|
default = [];
|
||||||
description = "List of extra groups that the buildbot user should be a part of.";
|
description = "List of extra groups that the buildbot user should be a part of.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ in {
|
|||||||
|
|
||||||
extraGroups = mkOption {
|
extraGroups = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
default = [ "nixbld" ];
|
default = [];
|
||||||
description = "List of extra groups that the Buildbot Worker user should be a part of.";
|
description = "List of extra groups that the Buildbot Worker user should be a part of.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user