This commit is contained in:
albert 2024-12-23 22:38:58 +01:00
parent 0f569fdae6
commit 61684bbb6c
Signed by: albert
GPG key ID: 3895DD267CA11BA9

View file

@ -0,0 +1,21 @@
{ ... }: {
networking = {
firewall = {
enable = true;
allowedTCPPorts = [
53 # DNS
80 # HTTP
443 # HTTPS
];
interfaces = {
tailscale0= {
allowedTCPPorts = [
53 # DNS
80 # HTTP
443 # HTTPS
];
};
};
};
};
}