summaryrefslogtreecommitdiff
path: root/Biz/Cloud/Networking.nix
blob: 1c1f832f37769ffc216986efc91c21608ee9cb7d (plain)
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
{ lib, ... }: {
  # This file was populated at runtime with the networking
  # details gathered from the active system.
  networking = {
    nameservers = [ "8.8.8.8" ];
    defaultGateway = "143.198.112.1";
    defaultGateway6 = "2604:a880:400:d0::1";
    dhcpcd.enable = false;
    usePredictableInterfaceNames = lib.mkForce false;
    interfaces = {
      eth0 = {
        ipv4.addresses = [
          {
            address = "143.198.118.179";
            prefixLength = 20;
          }
          {
            address = "10.10.0.7";
            prefixLength = 16;
          }
        ];
        ipv6.addresses = [
          {
            address = "2604:a880:400:d0::19f1:7001";
            prefixLength = 64;
          }
          {
            address = "fe80::a06e:26ff:fee1:941";
            prefixLength = 64;
          }
        ];
        ipv4.routes = [{
          address = "143.198.112.1";
          prefixLength = 32;
        }];
        ipv6.routes = [{
          address = "2604:a880:400:d0::1";
          prefixLength = 128;
        }];
      };

    };
  };
  services.udev.extraRules = ''
    ATTR{address}=="a2:6e:26:e1:09:41", NAME="eth0"
    ATTR{address}=="f2:4e:52:1a:72:ef", NAME="eth1"
  '';
}