grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / hardware / interception-tools.nix
blobd60e7ca5954786573594f75ff0a2088be45de2dd
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.services.interception-tools;
4 in {
5   options.services.interception-tools = {
6     enable = lib.mkOption {
7       type = lib.types.bool;
8       default = false;
9       description = "Whether to enable the interception tools service.";
10     };
12     plugins = lib.mkOption {
13       type = lib.types.listOf lib.types.package;
14       default = [ pkgs.interception-tools-plugins.caps2esc ];
15       defaultText = lib.literalExpression "[ pkgs.interception-tools-plugins.caps2esc ]";
16       description = ''
17         A list of interception tools plugins that will be made available to use
18         inside the udevmon configuration.
19       '';
20     };
22     udevmonConfig = lib.mkOption {
23       type = lib.types.either lib.types.str lib.types.path;
24       default = ''
25         - JOB: "intercept -g $DEVNODE | caps2esc | uinput -d $DEVNODE"
26           DEVICE:
27             EVENTS:
28               EV_KEY: [KEY_CAPSLOCK, KEY_ESC]
29       '';
30       example = ''
31         - JOB: "intercept -g $DEVNODE | y2z | x2y | uinput -d $DEVNODE"
32           DEVICE:
33             EVENTS:
34               EV_KEY: [KEY_X, KEY_Y]
35       '';
36       description = ''
37         String of udevmon YAML configuration, or path to a udevmon YAML
38         configuration file.
39       '';
40     };
41   };
43   config = lib.mkIf cfg.enable {
44     systemd.services.interception-tools = {
45       description = "Interception tools";
46       path = [ pkgs.bash pkgs.interception-tools ] ++ cfg.plugins;
47       serviceConfig = {
48         ExecStart = ''
49           ${pkgs.interception-tools}/bin/udevmon -c \
50           ${if builtins.typeOf cfg.udevmonConfig == "path"
51           then cfg.udevmonConfig
52           else pkgs.writeText "udevmon.yaml" cfg.udevmonConfig}
53         '';
54         Nice = -20;
55       };
56       wantedBy = [ "multi-user.target" ];
57     };
58   };