summaryrefslogtreecommitdiff
path: root/modules/nixos/networking/networks/109-199-104-83.nix
blob: ad599b12022dcf9adbeec3f12313cc5a51b75034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  networking = {
    useDHCP = false;
    hostName = "109-199-104-83";
    firewall = {
      enable = true;
      allowedTCPPorts = [80 443];
      allowedUDPPorts = [80 443];
    };
  };
  services.cloud-init = {
    enable = true;
    network.enable = true;
  };
}