1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/nixos/tests/common/user-account.nix
2016-04-12 19:13:52 +02:00

15 lines
262 B
Nix

{ lib, ... }:
{ users.extraUsers.alice =
{ isNormalUser = true;
description = "Alice Foobar";
password = "foobar";
};
users.extraUsers.bob =
{ isNormalUser = true;
description = "Bob Foobar";
password = "foobar";
};
}