summary refs log tree commit diff
path: root/nixos/modules/services/hardware/pommed.nix
blob: 7be4dc1e84643351692abb306b7b26048e6efb4e (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
41
42
43
44
45
46
47
48
{ config, lib, pkgs, ... }:

with lib;

{

  options = {

    services.hardware.pommed = {

      enable = mkOption {
        type = types.bool;
        default = false;
        description = ''
          Whether to use the pommed tool to handle Apple laptop keyboard hotkeys.
        '';
      };

      configFile = mkOption {
        type = types.path;
        description = ''
          The path to the <filename>pommed.conf</filename> file.
        '';
      };
    };

  };

  config = mkIf config.services.hardware.pommed.enable {
    environment.systemPackages = [ pkgs.polkit ];

    environment.etc."pommed.conf".source = config.services.hardware.pommed.configFile;

    services.hardware.pommed.configFile = "${pkgs.pommed}/etc/pommed.conf";

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

    systemd.services.pommed = {
      description = "Pommed hotkey management";
      wantedBy = [ "multi-user.target" ];
      after = [ "dbus.service" ];
      postStop = "rm -f /var/run/pommed.pid";
      script = "${pkgs.pommed}/bin/pommed";
      serviceConfig.Type = "forking";
      path = [ pkgs.eject ];
    };
  };
}