mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
126 lines
3.8 KiB
Nix
126 lines
3.8 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.services.deconz;
|
||
|
name = "deconz";
|
||
|
stateDir = "/var/lib/${name}";
|
||
|
# ref. upstream deconz.service
|
||
|
capabilities =
|
||
|
lib.optionals (cfg.httpPort < 1024 || cfg.wsPort < 1024) [ "CAP_NET_BIND_SERVICE" ]
|
||
|
++ lib.optionals (cfg.allowRebootSystem) [ "CAP_SYS_BOOT" ]
|
||
|
++ lib.optionals (cfg.allowRestartService) [ "CAP_KILL" ]
|
||
|
++ lib.optionals (cfg.allowSetSystemTime) [ "CAP_SYS_TIME" ];
|
||
|
in
|
||
|
{
|
||
|
options.services.deconz = {
|
||
|
|
||
|
enable = lib.mkEnableOption "deCONZ, a Zigbee gateway for use with ConBee hardware (https://phoscon.de/en/conbee2)";
|
||
|
|
||
|
package = lib.mkOption {
|
||
|
type = lib.types.package;
|
||
|
default = pkgs.deconz;
|
||
|
defaultText = lib.literalExpression "pkgs.deconz";
|
||
|
description = "Which deCONZ package to use.";
|
||
|
};
|
||
|
|
||
|
device = lib.mkOption {
|
||
|
type = lib.types.nullOr lib.types.str;
|
||
|
default = null;
|
||
|
description = ''
|
||
|
Force deCONZ to use a specific USB device (e.g. /dev/ttyACM0). By
|
||
|
default it does a search.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
listenAddress = lib.mkOption {
|
||
|
type = lib.types.str;
|
||
|
default = "127.0.0.1";
|
||
|
description = ''
|
||
|
Pin deCONZ to the network interface specified through the provided IP
|
||
|
address. This applies for the webserver as well as the websocket
|
||
|
notifications.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
httpPort = lib.mkOption {
|
||
|
type = lib.types.port;
|
||
|
default = 80;
|
||
|
description = "TCP port for the web server.";
|
||
|
};
|
||
|
|
||
|
wsPort = lib.mkOption {
|
||
|
type = lib.types.port;
|
||
|
default = 443;
|
||
|
description = "TCP port for the WebSocket.";
|
||
|
};
|
||
|
|
||
|
openFirewall = lib.mkEnableOption "open up the service ports in the firewall";
|
||
|
|
||
|
allowRebootSystem = lib.mkEnableOption "allow rebooting the system";
|
||
|
|
||
|
allowRestartService = lib.mkEnableOption "allow killing/restarting processes";
|
||
|
|
||
|
allowSetSystemTime = lib.mkEnableOption "allow setting the system time";
|
||
|
|
||
|
extraArgs = lib.mkOption {
|
||
|
type = lib.types.listOf lib.types.str;
|
||
|
default = [ ];
|
||
|
example = [
|
||
|
"--dbg-info=1"
|
||
|
"--dbg-err=2"
|
||
|
];
|
||
|
description = ''
|
||
|
Extra command line arguments for deCONZ, see
|
||
|
https://github.com/dresden-elektronik/deconz-rest-plugin/wiki/deCONZ-command-line-parameters.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
|
||
|
networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewall [
|
||
|
cfg.httpPort
|
||
|
cfg.wsPort
|
||
|
];
|
||
|
|
||
|
services.udev.packages = [ cfg.package ];
|
||
|
|
||
|
systemd.services.deconz = {
|
||
|
description = "deCONZ Zigbee gateway";
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
preStart = ''
|
||
|
# The service puts a nix store path reference in here, and that path can
|
||
|
# be garbage collected. Ensure the file gets "refreshed" on every start.
|
||
|
rm -f ${stateDir}/.local/share/dresden-elektronik/deCONZ/zcldb.txt
|
||
|
'';
|
||
|
environment = {
|
||
|
HOME = stateDir;
|
||
|
XDG_RUNTIME_DIR = "/run/${name}";
|
||
|
};
|
||
|
serviceConfig = {
|
||
|
ExecStart =
|
||
|
"${lib.getExe cfg.package}"
|
||
|
+ " -platform minimal"
|
||
|
+ " --http-listen=${cfg.listenAddress}"
|
||
|
+ " --http-port=${toString cfg.httpPort}"
|
||
|
+ " --ws-port=${toString cfg.wsPort}"
|
||
|
+ " --auto-connect=1"
|
||
|
+ (lib.optionalString (cfg.device != null) " --dev=${cfg.device}")
|
||
|
+ " " + (lib.escapeShellArgs cfg.extraArgs);
|
||
|
Restart = "on-failure";
|
||
|
AmbientCapabilities = capabilities;
|
||
|
CapabilityBoundingSet = capabilities;
|
||
|
UMask = "0027";
|
||
|
DynamicUser = true;
|
||
|
RuntimeDirectory = name;
|
||
|
RuntimeDirectoryMode = "0700";
|
||
|
StateDirectory = name;
|
||
|
WorkingDirectory = stateDir;
|
||
|
# For access to /dev/ttyACM0 (ConBee).
|
||
|
SupplementaryGroups = [ "dialout" ];
|
||
|
ProtectHome = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|