nix/module/Network.nix

7 lines
102 B
Nix

{ lib, ... }: {
networking = {
useDHCP = lib.mkDefault true;
networkmanager.enable = true;
};
}