nixos-dotfiles/modules/hardware/xone.nix

11 lines
367 B
Nix
Raw Normal View History

2024-05-05 18:53:09 +00:00
{ pkgs, unstable, config, ... }:
{
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 ];
}