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