18 lines
173 B
Nix
18 lines
173 B
Nix
{ pkgs, ... }: {
|
|
|
|
networking.firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [
|
|
|
|
443
|
|
80
|
|
];
|
|
allowedUDPPorts = [
|
|
443
|
|
80
|
|
];
|
|
};
|
|
|
|
}
|
|
|