nixcfg/site/pluton.nix

13 lines
224 B
Nix

{ config, pkgs, ... }:
{
networking.defaultGateway = {
address = "192.168.0.1";
interface = "enp0s25";
};
services.nomad.settings.datacenter = "pluton";
networking.firewall.allowedTCPPorts = [ 80 443 ];
}