mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
79a20e2ac0
Has been default in nixpkgs for a long time now.
7 lines
143 B
Nix
7 lines
143 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
boot.blacklistedKernelModules = lib.optionals (!config.hardware.enableRedistributableFirmware) [
|
|
"ath3k"
|
|
];
|
|
}
|