fix lints

This commit is contained in:
Vivian 2023-12-24 12:27:59 +01:00
parent 23fd3adfa3
commit 30de216118
14 changed files with 201 additions and 247 deletions

View file

@ -49,17 +49,21 @@ in {
allowedTCPPorts = [ 25565 ];
};
users.extraUsers.laura.extraGroups = [ "wheel" ];
users.groups.mc = { };
users = {
groups.mc = { };
extraUsers = {
laura.extraGroups = [ "wheel" ];
users.extraUsers.julia = {
isNormalUser = true;
shell = pkgs.zsh;
julia = {
isNormalUser = true;
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKTvqk+CJG4VwN8wg3H1ZdbUVj1JuX7RYKH1ewRKfCPv julia@juliadijkstraarch"
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKTvqk+CJG4VwN8wg3H1ZdbUVj1JuX7RYKH1ewRKfCPv julia@juliadijkstraarch"
];
extraGroups = [ "mc" "wheel" ];
extraGroups = [ "mc" "wheel" ];
};
};
};
}