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