infrastructure/hosts/hydrogen/services/default.nix
Laureηt 752d0a1ad1
🎨 (hydrogen) declare the firewall's allowedTCPPorts in the services
(openssh's port is automatically opened by the module)
2023-12-30 18:32:58 +01:00

17 lines
190 B
Nix

{...}: {
imports = [
./acme
./atuin
./gitea
./nginx
./ssh
];
networking.firewall = {
allowedTCPPorts = [
80 # http
443 # https / tls
];
};
}