infrastructure/hosts/cesium/services/default.nix
2024-03-31 17:28:31 +02:00

18 lines
204 B
Nix

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