This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/carbon/services/firewall.nix

18 lines
173 B
Nix
Raw Normal View History

2024-05-29 17:15:20 +02:00
{ pkgs, ... }: {
networking.firewall = {
enable = true;
allowedTCPPorts = [
443
80
];
allowedUDPPorts = [
443
80
];
};
}