12 lines
289 B
Nix
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;
|
|
} |