13 lines
242 B
Nix
13 lines
242 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
networking.hostName = config.qois.meta.hosts.lindberg-build.hostName;
|
|
networking.useDHCP = false;
|
|
networking.interfaces.enp11s0.useDHCP = true;
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
80
|
|
443
|
|
];
|
|
}
|