aboutsummaryrefslogtreecommitdiff
path: root/site/pluton.nix
blob: ec940188ae2168971ed4bd3f45d7e22457a5a7d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{
  networking.defaultGateway = {
    address = "192.168.0.1";
    interface = "enp0s25";
  };

  services.consul.extraConfig.datacenter = "pluton";
  services.nomad.settings.datacenter = "pluton";
  services.consul.extraConfig.bootstrap_expect = 1;
  services.nomad.settings.server.bootstrap_expect = 1;
}