summary refs log tree commit diff
path: root/nixos/modules/hardware/ckb.nix
blob: 8429572a8822644bbf628ee223d87bfb18cb66cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.hardware.ckb;

in
  {
    options.hardware.ckb = {
      enable = mkEnableOption "the Corsair keyboard/mouse driver";

      package = mkOption {
        type = types.package;
        default = pkgs.ckb;
        defaultText = "pkgs.ckb";
        description = ''
          The package implementing the Corsair keyboard/mouse driver.
        '';
      };
    };

    config = mkIf cfg.enable {
      environment.systemPackages = [ cfg.package ];

      systemd.services.ckb = {
        description = "Corsair Keyboard Daemon";
        wantedBy = ["multi-user.target"];
        script = "${cfg.package}/bin/ckb-daemon";
        serviceConfig = {
          Restart = "always";
          StandardOutput = "syslog";
        };
      };
    };

    meta = {
      maintainers = with lib.maintainers; [ kierdavis ];
    };
  }