summary refs log blame commit diff stats
path: root/hosts/server1/networking.nix
blob: cd0484f7d404d26a15a32c0811bb8c2c062c544a (plain) (tree)
1
2
3
4
5
6
7
             

                                                          

                   






                             



                                                     


                                    
                          
           
                                            












                                   
          
        


                                                   
     
{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;
          }
        ];
      };
    };
  };
  services.udev.extraRules = ''
    ATTR{address}=="66:22:6d:82:93:9b", NAME="eth0"
  '';
}