infrastructure/nixos-configurations/lindberg-webapps/networking.nix
2025-03-25 14:10:54 +02:00

15 lines
274 B
Nix

{ config, ... }:
{
networking.hostName = config.qois.meta.hosts.lindberg-webapps.hostName;
networking.useDHCP = false;
networking.interfaces.enp1s0.useDHCP = true;
qois.backplane-net.enable = true;
networking.firewall.allowedTCPPorts = [
80
443
];
}