My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/nixos/tests/common/user-account.nix

15 lines
265 B

{ ... }:
{ users.users.alice =
{ isNormalUser = true;
description = "Alice Foobar";
password = "foobar";
uid = 1000;
};
users.users.bob =
{ isNormalUser = true;
description = "Bob Foobar";
password = "foobar";
};
}