nixcfg/site/neptune.nix
2021-12-26 13:23:01 +01:00

13 lines
224 B
Nix

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