mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-29 10:03:09 +01:00
8 lines
230 B
Nix
8 lines
230 B
Nix
{ pkgs, config, lib, host, ... }:
|
|
|
|
let inherit (import ../../hosts/${host}/options.nix) logitech; in
|
|
lib.mkIf (logitech == true) {
|
|
hardware.logitech.wireless.enable = true;
|
|
hardware.logitech.wireless.enableGraphical = true;
|
|
}
|