mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 11:33:07 +01:00
8 lines
210 B
Nix
8 lines
210 B
Nix
|
{ pkgs, config, lib, ... }:
|
||
|
|
||
|
let inherit (import ../../options.nix) logitech; in
|
||
|
lib.mkIf (logitech == true) {
|
||
|
hardware.logitech.wireless.enable = true;
|
||
|
hardware.logitech.wireless.enableGraphical = true;
|
||
|
}
|