This commit is contained in:
2025-07-24 14:46:11 +03:00
parent e496935c89
commit a6e1d9202c
3 changed files with 40 additions and 8 deletions
+29
View File
@@ -0,0 +1,29 @@
{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
{
services.netbird.server = {
enable = true;
};
networking.firewall = {
allowedTCPPorts = [
80
443
33073
10000
33080
];
allowedUDPPorts = [ 3478 ];
allowedUDPPortRanges = [
{
from = 49152;
to = 65535;
}
];
};
}