15 lines
280 B
Nix
15 lines
280 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
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
|
|
];
|
|
}
|