1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00

common/pc: only enable xf86-input-libinput when X is enabled

This commit is contained in:
K900 2024-04-10 17:04:36 +03:00 committed by GitHub
parent 805adee81c
commit f9a55f8d23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,5 +5,5 @@
"ath3k" "ath3k"
]; ];
services.xserver.libinput.enable = lib.mkDefault true; services.xserver.libinput.enable = lib.mkDefault config.services.xserver.enable;
} }