maybe this will fix bluetooth *sigh*

This commit is contained in:
cy 2025-01-01 01:06:33 -05:00
parent c2e20a3d52
commit 1f9fd276b0
2 changed files with 8 additions and 2 deletions

View file

@ -50,6 +50,14 @@
extraModulePackages = with config.boot.kernelPackages; [ extraModulePackages = with config.boot.kernelPackages; [
rtl8821ce rtl8821ce
]; ];
kernelParams = [
# see https://github.com/tomaspinho/rtl8821ce#pcie-active-state-power-management
"pcie_aspm=off"
];
# see https://github.com/tomaspinho/rtl8821ce#wi-fi-not-working-for-kernel--59
extraModprobeConfig = ''
blacklist rtw88_8821ce
'';
}; };
networking = { networking = {

View file

@ -4,8 +4,6 @@
{ {
config, config,
lib, lib,
pkgs,
modulesPath,
... ...
}: }:
{ {