nix/module/common/Network.nix

7 lines
102 B
Nix
Raw Normal View History

{ lib, ... }: {
2024-06-25 04:04:39 +03:00
networking = {
useDHCP = lib.mkDefault true;
networkmanager.enable = true;
};
}