1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 16:09:19 +03:00
nixpkgs/nixos/tests/common/user-account.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
253 B
Nix
Raw Normal View History

{ ... }:
{
users.users.alice = {
isNormalUser = true;
description = "Alice Foobar";
password = "foobar";
uid = 1000;
};
2016-04-12 19:12:28 +02:00
users.users.bob = {
2016-04-12 19:12:28 +02:00
isNormalUser = true;
description = "Bob Foobar";
password = "foobar";
};
}