nixos-dotfiles/modules/hardware/xone.nix

11 lines
367 B
Nix

{ pkgs, unstable, config, ... }:
{
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 ];
}