nixos-config/hosts/computer-mo/system-settings/sys.set-networking.nix

7 lines
141 B
Nix
Raw Normal View History

2024-08-10 14:26:53 +02:00
{ lib, host, ... }:
2024-08-10 14:15:06 +02:00
{
networking.useDHCP = lib.mkDefault true;
2024-08-10 14:26:53 +02:00
networking.hostName = host;
2024-08-10 14:15:06 +02:00
networking.networkmanager.enable = true;
}