Files
lavitz/modules/networking.nix
2025-08-20 13:34:21 -06:00

12 lines
263 B
Nix

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