about summary refs log tree commit diff
path: root/nix/hosts/wildcat/networking.nix
blob: c0b4bd0f9a6a77499cc5133dcf3bef1c9cb3919d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ lib, ... }: {
  # This file was populated at runtime with the networking
  # details gathered from the active system.
  networking = {
    nameservers =
      [ "2a01:4ff:ff00::add:2" "2a01:4ff:ff00::add:1" "185.12.64.1" ];
    defaultGateway = "172.31.1.1";
    defaultGateway6 = {
      address = "fe80::1";
      interface = "eth0";
    };
    dhcpcd.enable = false;
    usePredictableInterfaceNames = lib.mkForce false;
    interfaces = {
      eth0 = {
        ipv4.addresses = [{
          address = "5.78.87.68";
          prefixLength = 32;
        }];
        ipv6.addresses = [
          {
            address = "2a01:4ff:1f0:d1a3::1";
            prefixLength = 64;
          }
          {
            address = "fe80::9400:3ff:fe98:d6dc";
            prefixLength = 64;
          }
        ];
        ipv4.routes = [{
          address = "172.31.1.1";
          prefixLength = 32;
        }];
        ipv6.routes = [{
          address = "fe80::1";
          prefixLength = 128;
        }];
      };

    };
    firewall.allowedTCPPorts = [
      22 # ssh
      80 # nginx
      443 # nginx
    ];
  };
  services.udev.extraRules = ''
    ATTR{address}=="96:00:03:98:d6:dc", NAME="eth0"

  '';
}