1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-15 13:07:45 +00:00
nix-darwin/modules/services/khd.nix
Daiderd Jordan a4eb645d0d
launchd: allow string entries for serviceOptions.path
Fixes evaluation of khd.
2017-05-14 00:12:20 +02:00

46 lines
920 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.khd;
in
{
options = {
services.khd = {
enable = mkOption {
type = types.bool;
default = false;
description = "Whether to enable the khd hototkey daemon.";
};
package = mkOption {
type = types.path;
default = pkgs.khd;
defaultText = "pkgs.khd";
description = "This option specifies the khd package to use.";
};
};
};
config = mkIf cfg.enable {
launchd.user.agents.khd = {
path = [ cfg.package pkgs.kwm config.environment.systemPath ];
serviceConfig.Program = "${cfg.package}/bin/khd";
serviceConfig.KeepAlive = true;
serviceConfig.ProcessType = "Interactive";
serviceConfig.Sockets.Listeners =
{ SockServiceName = "3021";
SockType = "dgram";
SockFamily = "IPv4";
};
};
};
}