1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00
nixos-hardware/common/pc/default.nix
K900 79a20e2ac0 common/pc: remove libinput.enable
Has been default in nixpkgs for a long time now.
2024-04-10 14:22:23 +00:00

8 lines
143 B
Nix

{ config, lib, ... }:
{
boot.blacklistedKernelModules = lib.optionals (!config.hardware.enableRedistributableFirmware) [
"ath3k"
];
}