From e5b0c420d33b0e2290581696dc00db24de88dd23 Mon Sep 17 00:00:00 2001 From: MoritzBoehme Date: Wed, 29 Sep 2021 13:33:38 +0200 Subject: [PATCH] enable dhcp for eth --- hosts/nixos-laptop/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/nixos-laptop/default.nix b/hosts/nixos-laptop/default.nix index baa28e1..2811f3d 100644 --- a/hosts/nixos-laptop/default.nix +++ b/hosts/nixos-laptop/default.nix @@ -5,11 +5,10 @@ { config, pkgs, ... }: { - imports = - [ - # Include the results of the hardware scan. - ./hardware-configuration.nix - ]; + imports = [ + # Include the results of the hardware scan. + ./hardware-configuration.nix + ]; # BOOT boot = { @@ -44,6 +43,7 @@ useDHCP = false; interfaces.wlp1s0.useDHCP = true; + interfaces.enp4s0f4u2.useDHCP = true; }; time.timeZone = "Europe/Berlin";