Thingvellir fixes

This commit is contained in:
marc
2025-03-24 22:56:23 +01:00
parent 7312947723
commit 411bf5b0f2
2 changed files with 9 additions and 6 deletions

View File

@@ -8,12 +8,15 @@ in
enable = lib.mkEnableOption "ssh";
};
config = lib.mkIf cfg.enable {
services.openssh = {
enable = true;
settings = {
# TODO: Use ssh keys
PasswordAuthentication = true;
services = {
openssh = {
enable = true;
settings = {
# TODO: Use ssh keys
PasswordAuthentication = true;
};
};
# fail2ban.enable = true;
};
networking.firewall.allowedTCPPorts = [ 22 ];