14 lines
239 B
Nix
14 lines
239 B
Nix
{pkgs, ...}: {
|
|
users.users.jsw = {
|
|
isNormalUser = true;
|
|
shell = pkgs.fish;
|
|
initialPassword = "changeme";
|
|
extraGroups = [
|
|
"libvirtd"
|
|
"NetworkManager"
|
|
"plugdev"
|
|
"dialout"
|
|
"wheel"
|
|
];
|
|
};
|
|
}
|