about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/services/hardware/ratbagd.nix
blob: c939d5e40a24e300a856b52f9588fbb59522c7a6 (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
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.ratbagd;
in
{
  ###### interface

  options = {
    services.ratbagd = {
      enable = mkEnableOption (lib.mdDoc "ratbagd for configuring gaming mice");
    };
  };

  ###### implementation

  config = mkIf cfg.enable {
    # Give users access to the "ratbagctl" tool
    environment.systemPackages = [ pkgs.libratbag ];

    services.dbus.packages = [ pkgs.libratbag ];

    systemd.packages = [ pkgs.libratbag ];
  };
}