Merge pull request #86 from yegortimoshenko/201810/ath3k

common/pc: disable ath3k if non-free firmware is not available
This commit is contained in:
Jörg Thalheim 2020-10-20 06:37:54 +02:00 committed by GitHub
commit e8c5f886b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
{ lib, ... }:
{ config, lib, ... }:
{
boot.blacklistedKernelModules = lib.optionals (!config.hardware.enableRedistributableFirmware) [
"ath3k"
];
services.xserver.libinput.enable = lib.mkDefault true;
}