infrastructure/hosts/cesium/services/default.nix
2024-01-12 17:02:47 +01:00

17 lines
190 B
Nix

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