summary refs log tree commit diff
path: root/host/Rory-fosscord/configuration.nix
blob: 014f28a999eaa1e8b7d80df5c881b332e28c320e (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
{ ... }:

{
  imports = [
    ../../modules/base-server.nix
    ./software.nix
  ];

  networking = {
    hostName = "Rory-fosscord";
    interfaces.ens18.ipv4.addresses = [
      {
        address = "192.168.1.100";
        prefixLength = 24;
      }
    ];
    interfaces.ens19.ipv4.addresses = [
      {
        address = "10.10.10.100";
        prefixLength = 16;
      }
    ];
  };

  system.stateVersion = "22.11"; # DO NOT EDIT!
}