add users.nix fi;e
This commit is contained in:
parent
bc5a78e155
commit
4f6bb68e4a
2 changed files with 9 additions and 0 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
|
./users.nix
|
||||||
|
|
||||||
(libs.root "/modules/features/system/docker.nix")
|
(libs.root "/modules/features/system/docker.nix")
|
||||||
(libs.root "/modules/features/system/packages.nix")
|
(libs.root "/modules/features/system/packages.nix")
|
||||||
|
|
|
||||||
8
host/server/users.nix
Normal file
8
host/server/users.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{...}: {
|
||||||
|
users.users.asakiyuki.extraGroups = ["wheel" "public"];
|
||||||
|
users.users.junko.extraGroups = ["public"];
|
||||||
|
|
||||||
|
users.groups = {
|
||||||
|
public = {};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in a new issue