summary refs log tree commit diff stats
path: root/hosts/by-name/server1/networking.nix
blob: 4e1d64a0bb72d650aaa30e9ced62a9d03ffa4229 (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
52
{lib, ...}: {
  # This file was populated at runtime with the networking
  # details gathered from the active system.
  networking = {
    nameservers = [
      "8.8.8.8"
    ];
    defaultGateway = {
      address = "89.58.56.1";
      interface = "eth0";
    };
    defaultGateway6 = {
      address = "fe80::1";
      interface = "eth0";
    };
    dhcpcd.enable = false;
    usePredictableInterfaceNames = lib.mkForce false;
    interfaces = {
      eth0 = {
        ipv4.addresses = [
          {
            address = "89.58.58.33";
            prefixLength = 22;
          }
        ];
        ipv6.addresses = [
          {
            address = "2a03:4000:6a:3f3::1";
            prefixLength = 64;
          }
        ];
        ipv4.routes = [
          {
            address = "89.58.56.1";
            prefixLength = 32;
          }
        ];
        ipv6.routes = [
          {
            address = "fe80::1";
            prefixLength = 128;
          }
        ];
      };
    };
  };

  # cat /sys/class/net/eth0/address
  services.udev.extraRules = ''
    ATTR{address}=="66:78:8e:15:33:2e", NAME="eth0"
  '';
}