Files
cnix/system/modules/hardware/logitech/default.nix
2024-10-13 18:09:15 +02:00

21 lines
373 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.systemModules.hardware.logitech;
in {
options = {
systemModules.hardware.logitech.enable = mkEnableOption "Enables logitech";
};
config = mkIf cfg.enable {
hardware = {
logitech.wireless = {
enable = true;
enableGraphical = true;
};
};
};
}