nixos-config/hosts/computer-mo/system-settings/sys.set-networking.nix
Mohamed C. 9b0f141a3c
Some checks are pending
Flake.lock / build (push) Waiting to run
use variable
2024-08-10 14:26:53 +02:00

7 lines
141 B
Nix

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