nixcfg/site/pluton.nix

14 lines
290 B
Nix
Raw Normal View History

2021-11-18 15:40:19 +00:00
{ config, pkgs, ... }:
{
networking.defaultGateway = {
address = "192.168.0.1";
interface = "enp0s25";
};
2021-12-26 12:23:01 +00:00
networking.nameservers = [ "213.186.33.99" "172.104.136.243" ];
2021-11-18 15:40:19 +00:00
services.nomad.settings.datacenter = "pluton";
2021-11-28 18:20:36 +00:00
networking.firewall.allowedTCPPorts = [ 80 443 ];
2021-11-18 15:40:19 +00:00
}