cfg/host/roam/modules/services.nix
2025-05-26 22:13:03 +02:00

19 lines
236 B
Nix

{ config, ... }:
let
headscale-domain = "headscale.hdohmen.de";
in
{
services = {
nginx = {
enable = true;
};
};
networking.firewall = {
enable = true;
allowedTCPPorts = [
80
443
];
};
}