Files
Numbus/modules/computer/misc/networking.nix
T
2026-05-02 12:52:08 +02:00

12 lines
289 B
Nix

{ config, ... }:
{
# Enable networking
networking.networkmanager.enable = true;
networking.hostName = "numbus-computer";
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ ];
networking.firewall.allowedUDPPorts = [ ];
networking.firewall.enable = true;
}