8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
15 lines
265 B
Nix
15 lines
265 B
Nix
{ ... }:
|
|
|
|
{ users.users.alice =
|
|
{ isNormalUser = true;
|
|
description = "Alice Foobar";
|
|
password = "foobar";
|
|
uid = 1000;
|
|
};
|
|
|
|
users.users.bob =
|
|
{ isNormalUser = true;
|
|
description = "Bob Foobar";
|
|
password = "foobar";
|
|
};
|
|
}
|