add ssh for git

This commit is contained in:
NyxErinys 2026-05-19 23:03:25 -05:00
parent 3d899c9440
commit 8ab8d93c01

View file

@ -16,7 +16,11 @@
CF_ZONE_API_TOKEN="${config.sops.placeholder."CF_ZONE_API_TOKEN"}"
'';
networking.firewall.allowedTCPPorts = [ 80 443 ];
networking.firewall.allowedTCPPorts = [
80 # http
443 # https
222 # git ssh
];
security.acme = {
acceptTerms = true;
@ -51,5 +55,11 @@
};
};
};
streamConfig = ''
server {
listen 222;
proxy_pass 10.5.0.2:222;
}
'';
};
}