Skip to content

Commit

Permalink
buildbot modules: don't put BB users in nixbld group
Browse files Browse the repository at this point in the history
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 :)
  • Loading branch information
copumpkin committed Mar 9, 2017
1 parent 583c50d commit c3939cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -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.";
};

Expand Down
Expand Up @@ -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.";
};

Expand Down

0 comments on commit c3939cb

Please sign in to comment.