From 3ea00a10c26b3d500fd0dc894b627d2d1daa5d7d Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Thu, 11 May 2023 19:31:42 +0200 Subject: [PATCH] Add wifi drivers for laptop --- nixos-configurations/laptop/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos-configurations/laptop/default.nix b/nixos-configurations/laptop/default.nix index b9de5c8..714f3bf 100644 --- a/nixos-configurations/laptop/default.nix +++ b/nixos-configurations/laptop/default.nix @@ -10,4 +10,6 @@ networking.hostName = "laptop"; services.xserver.libinput.enable = true; + + boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ]; }