15 lines
179 B
Nix
15 lines
179 B
Nix
{ ... }:
|
|
|
|
{
|
|
networking = {
|
|
firewall = {
|
|
allowedTCPPorts = [
|
|
80
|
|
443
|
|
8010
|
|
9666
|
|
];
|
|
allowedUDPPorts = [ 24454 ];
|
|
};
|
|
};
|
|
}
|