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:
Dan Peebles 2017-03-09 11:46:26 -05:00
parent 583c50ddce
commit c3939cbcf5
2 changed files with 2 additions and 2 deletions

View file

@ -118,7 +118,7 @@ in {
extraGroups = mkOption {
type = types.listOf types.str;
default = [ "nixbld" ];
default = [];
description = "List of extra groups that the buildbot user should be a part of.";
};

View file

@ -31,7 +31,7 @@ in {
extraGroups = mkOption {
type = types.listOf types.str;
default = [ "nixbld" ];
default = [];
description = "List of extra groups that the Buildbot Worker user should be a part of.";
};