fix lints
Some checks failed
Lint / lint (push) Failing after 1m33s
Plex Update / update (push) Successful in 1m52s

This commit is contained in:
Vivian 2023-12-24 12:27:59 +01:00
parent a25ef0c8ab
commit d22f444fc5
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" ];
};
};
};
}