summaryrefslogtreecommitdiffstats
path: root/old/modules/rmdir/networking.nix
blob: fb39c5dd587321f6f6d4ff248e7c488d06c213dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
_:

{
  networking.hostName = "rmdir";
  networking.interfaces.enp2s1.ip4 = [
    {
      address = "167.88.44.94";
      prefixLength = 24;
    }
  ];
  networking.defaultGateway = "167.88.44.1";
  networking.nameservers = [
    "8.8.8.8"
  ];
}