summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/misc/input-remapper.nix
blob: 4908abd0bd4092decbcd6ca6131112ad83188672 (plain)
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
{
  pkgs,
  lib,
  config,
  ...
}:
let
  cfg = config.services.input-remapper;
in
{
  options = {
    services.input-remapper = {
      enable = lib.mkEnableOption "input-remapper, an easy to use tool to change the mapping of your input device buttons";
      package = lib.mkPackageOption pkgs "input-remapper" { };
      enableUdevRules = lib.mkEnableOption "udev rules added by input-remapper to handle hotplugged devices. Currently disabled by default due to <https://github.com/sezanzeb/input-remapper/issues/140>";
      serviceWantedBy = lib.mkOption {
        default = [ "graphical.target" ];
        example = [ "multi-user.target" ];
        type = lib.types.listOf lib.types.str;
        description = "Specifies the WantedBy setting for the input-remapper service.";
      };
    };
  };

  config = lib.mkIf cfg.enable {
    services.udev.packages = lib.mkIf cfg.enableUdevRules [ cfg.package ];
    services.dbus.packages = [ cfg.package ];
    systemd.packages = [ cfg.package ];
    environment.systemPackages = [ cfg.package ];
    systemd.services.input-remapper.wantedBy = cfg.serviceWantedBy;
  };

  meta.maintainers = with lib.maintainers; [ LunNova ];
}