Test
Some checks failed
build-linode-img / build-linode-img (push) Failing after 5m41s

This commit is contained in:
albert 2023-12-19 21:27:26 +09:00
parent 1fca88fbbe
commit 40e9ef0d32
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
2 changed files with 18 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./builder.nix
./wireguard.nix
./cron.nix
./firewall.nix
];
environment.systemPackages = [

View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }: {
networking.firewall.allowedUDPPorts = [
3478 # Headscale DERP UDP
10000 # Jitsi
];
networking.firewall.allowedTCPPorts = [
80 # HTTP
443 # HTTPS
42420 # Vintage Story
25565 # Minecraft
1443 # Headscale DERP
4443 # jitsi-jvb
5222 # Jitsi
5347 # Jitsi
5280 # Jitsi
];
}