nixos/tests: users.(extraUsers|extraGroup->users|group)

This commit is contained in:
Florian Klink
2018-06-30 02:31:30 +02:00
parent 0868aa76f6
commit 89d5d191b4
13 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ in
{ config, lib, pkgs, ... }:
with lib;
{
users.extraGroups = { foobar = {}; barfoo = {}; baz = { gid = 1337; }; };
users.groups = { foobar = {}; barfoo = {}; baz = { gid = 1337; }; };
users.users = {
test0 = { isNormalUser = true; extraGroups = [ "wheel" ]; };
test1 = { isNormalUser = true; password = password; };