21 lines
306 B
Nix
21 lines
306 B
Nix
{...}: {
|
|
networking = {
|
|
firewall = {
|
|
interfaces = {
|
|
ens3 = {
|
|
allowedUDPPorts = [
|
|
443
|
|
53590
|
|
53570
|
|
];
|
|
|
|
allowedTCPPorts = [
|
|
443
|
|
53590
|
|
53570
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|