summary refs log tree commit diff stats
path: root/system/services/nginx/default.nix
blob: 6753fb01fcba1e6cc3e82e842b69fdf695208344 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{...}: {
  imports = [
    ./hosts.nix
  ];
  networking.firewall = {
    allowedTCPPorts = [80 443];
  };
  services.nginx = {
    enable = true;
  };
}