about summary refs log tree commit diff
path: root/infra/nixos/glesys.nix
blob: 4cd66cb195954a3c3ad25c4007b178a7c7a91761 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  sto-tazserve-1 = { pkgs, config, ... }: {
    deployment.targetHost = "46.21.106.241";

    # Configure network
    networking.hostName = "sto-tazserve-1";
    networking.interfaces.ens32.ip4 = [
      { address = "46.21.106.241"; prefixLength = 23; }
    ];
    networking.defaultGateway = "46.21.106.1";
    networking.nameservers = [ "195.20.206.80" "195.20.206.81" ];

    imports = [
      ./configuration.nix
      ./tazserve.nix
    ];
  };
}