config/systems/desktop/networking.nix
2024-09-29 16:42:01 +01:00

13 lines
203 B
Nix

{ lib, ... }:
{
# DHCP
networking.useDHCP = lib.mkDefault true;
# Hostname
networking.hostName = "desktop";
# Enable wireless support & configuration
networking.wireless.enable = false;
}