mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let cfg = config.services.hardware.pommed;
|
|
defaultConf = "${pkgs.pommed_light}/etc/pommed.conf.mactel";
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.hardware.pommed = {
|
|
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to use the pommed tool to handle Apple laptop
|
|
keyboard hotkeys.
|
|
'';
|
|
};
|
|
|
|
configFile = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.path;
|
|
default = null;
|
|
description = ''
|
|
The path to the {file}`pommed.conf` file. Leave
|
|
to null to use the default config file
|
|
({file}`/etc/pommed.conf.mactel`). See the
|
|
files {file}`/etc/pommed.conf.mactel` and
|
|
{file}`/etc/pommed.conf.pmac` for examples to
|
|
build on.
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ pkgs.polkit pkgs.pommed_light ];
|
|
|
|
environment.etc."pommed.conf".source =
|
|
if cfg.configFile == null then defaultConf else cfg.configFile;
|
|
|
|
systemd.services.pommed = {
|
|
description = "Pommed Apple Hotkeys Daemon";
|
|
wantedBy = [ "multi-user.target" ];
|
|
script = "${pkgs.pommed_light}/bin/pommed -f";
|
|
};
|
|
};
|
|
}
|