dhcp.nix (111B)
1 { lib, ... }: 2 3 { 4 networking = { 5 networkmanager.enable = true; 6 useDHCP = lib.mkDefault true; 7 }; 8 } 9 10