2024-05-05 18:53:09 +00:00
|
|
|
{ pkgs, unstable, config, ... }:
|
2022-09-14 03:53:30 +00:00
|
|
|
{
|
2024-05-05 18:53:09 +00:00
|
|
|
boot = {
|
|
|
|
blacklistedKernelModules = [ "xpad" "mt76x2u" ];
|
|
|
|
# extraModulePackages = with unstable.linuxPackages_latest; [ xone ];
|
|
|
|
extraModulePackages = with config.boot.kernelPackages; [ xone ];
|
|
|
|
};
|
|
|
|
#hardware.firmware = [ unstable.xow_dongle-firmware ];
|
|
|
|
hardware.firmware = with unstable; [ xow_dongle-firmware ];
|
2022-09-14 03:53:30 +00:00
|
|
|
}
|