forked from Deuxfleurs/nixcfg
12 lines
224 B
Nix
12 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 ];
|
|
}
|