nixcfg/site/neptune.nix

13 lines
224 B
Nix
Raw Normal View History

2021-11-18 15:40:19 +00:00
{ config, pkgs, ... }:
{
networking.defaultGateway = {
address = "192.168.1.254";
interface = "eno1";
};
services.nomad.settings.datacenter = "neptune";
2021-12-08 16:57:54 +00:00
networking.firewall.allowedTCPPorts = [ 80 443 ];
2021-11-18 15:40:19 +00:00
}