79a20e2ac0
Has been default in nixpkgs for a long time now.
8 lines
143 B
Nix
8 lines
143 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
boot.blacklistedKernelModules = lib.optionals (!config.hardware.enableRedistributableFirmware) [
|
|
"ath3k"
|
|
];
|
|
}
|