mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
9 lines
201 B
Nix
9 lines
201 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
boot.blacklistedKernelModules = lib.optionals (!config.hardware.enableRedistributableFirmware) [
|
|
"ath3k"
|
|
];
|
|
|
|
services.xserver.libinput.enable = lib.mkDefault true;
|
|
}
|