From c86c09f2db1a25901eec434facfe489364bc3fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Tue, 30 Sep 2025 22:49:24 +0200 Subject: [PATCH] gunter: blacklist non-working wifi kernel modules --- hosts/gunter/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/gunter/configuration.nix b/hosts/gunter/configuration.nix index b40c644..8c80a46 100644 --- a/hosts/gunter/configuration.nix +++ b/hosts/gunter/configuration.nix @@ -23,6 +23,13 @@ # Bootloader stuff boot = { + blacklistedKernelModules = [ + "mt7921e" + "mt7921_common" + "mt792x_lib" + "mt76_connac_lib" + "mt76" + ]; # Kernel stuff kernelPackages = pkgs.linuxPackages_latest; # kernelPackages = lib.warn "Pinned to kernel 6.14 due to nvidia issues" pkgs.linuxPackages_6_14;