mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-09 03:56:09 +01:00
common/pc: disable ath3k if non-free firmware is not available
This commit is contained in:
parent
5c8cab8493
commit
3d337906f5
1 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
{ lib, ... }:
|
{ config, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
boot.blacklistedKernelModules = lib.optionals (!config.hardware.enableRedistributableFirmware) [
|
||||||
|
"ath3k"
|
||||||
|
];
|
||||||
|
|
||||||
services.xserver.libinput.enable = lib.mkDefault true;
|
services.xserver.libinput.enable = lib.mkDefault true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue