23 lines
328 B
Nix
23 lines
328 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake.nixosModules.userConfiguration = {
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
users.users.user01 = {
|
|
isNormalUser = true;
|
|
initialPassword = "password";
|
|
shell = pkgs.zsh;
|
|
description = "user01";
|
|
extraGroups = [
|
|
"root"
|
|
"wheel"
|
|
];
|
|
};
|
|
};
|
|
}
|