blob: 22bea08debfffb16e6fac57045df5b0cf7a665de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, pkgs, ... }:
{
networking.defaultGateway = {
address = "192.168.0.1";
interface = "enp0s25";
};
services.nomad.settings.datacenter = "pluton";
networking.firewall.allowedTCPPorts = [ 80 443 ];
}
|