organize modules
This commit is contained in:
parent
d7453265a1
commit
d0d4bf9ddb
21 changed files with 54 additions and 69 deletions
|
|
@ -1,23 +1,21 @@
|
|||
{ pkgs, username, ... }: {
|
||||
users = {
|
||||
users."${username}" = {
|
||||
linger = true;
|
||||
isNormalUser = true;
|
||||
description = "${username}";
|
||||
initialPassword = "${username}";
|
||||
shell = pkgs.zsh;
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"dialout"
|
||||
"libvirtd"
|
||||
"docker"
|
||||
"input"
|
||||
"uinput"
|
||||
"ydotool"
|
||||
"adbusers"
|
||||
"kvm"
|
||||
];
|
||||
};
|
||||
users.users."${username}" = {
|
||||
linger = true;
|
||||
isNormalUser = true;
|
||||
description = "${username}";
|
||||
initialPassword = "${username}";
|
||||
shell = pkgs.zsh;
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"dialout"
|
||||
"libvirtd"
|
||||
"docker"
|
||||
"input"
|
||||
"uinput"
|
||||
"plugdev"
|
||||
"adbusers"
|
||||
"kvm"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue