Initial commit
This commit is contained in:
19
hosts/axoserver-nix/users.nix
Normal file
19
hosts/axoserver-nix/users.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ self, ... } : {
|
||||
# imports = [ "${self}/modules/system/default-user.nix" ];
|
||||
|
||||
users.groups.server = {};
|
||||
users.users = {
|
||||
axolotsh = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "server" ];
|
||||
};
|
||||
mirsem = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "server" ];
|
||||
};
|
||||
jam = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "server" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user