config/systems/desktop/networking.nix

13 lines
203 B
Nix
Raw Normal View History

2024-09-15 12:56:25 +01:00
{ lib, ... }:
{
# DHCP
networking.useDHCP = lib.mkDefault true;
# Hostname
networking.hostName = "desktop";
# Enable wireless support & configuration
networking.wireless.enable = false;
}