mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
ec4f38c56f
Option defaults should not refer to store paths, because they cause the manual to be rebuilt gratuitously. It's especially bad to refer to a highly variable path like a computed configuration file.
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ 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 ];
|
|
|
|
jobs.pommed = { name = "pommed";
|
|
|
|
description = "Pommed hotkey management";
|
|
|
|
startOn = "started dbus";
|
|
|
|
postStop = "rm -f /var/run/pommed.pid";
|
|
|
|
exec = "${pkgs.pommed}/bin/pommed";
|
|
|
|
daemonType = "fork";
|
|
|
|
path = [ pkgs.eject ];
|
|
};
|
|
};
|
|
}
|