12 lines
263 B
Nix
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 = [ ... ];
|
|
} |