13 lines
143 B
Nix
13 lines
143 B
Nix
{ pkgs, ... }:
|
|
{
|
|
networking.firewall = {
|
|
enable = true;
|
|
|
|
allowedUDPPorts = [
|
|
3224
|
|
];
|
|
allowedTCPPorts = [
|
|
];
|
|
};
|
|
}
|