python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / misc / domoticz.nix
blob3358b4de466a6411bd134b121ba92e2ca8c3aab3
1 { lib, pkgs, config, ... }:
3 with lib;
5 let
7   cfg = config.services.domoticz;
8   pkgDesc = "Domoticz home automation";
10 in {
12   options = {
14     services.domoticz = {
15       enable = mkEnableOption (lib.mdDoc pkgDesc);
17       bind = mkOption {
18         type = types.str;
19         default = "0.0.0.0";
20         description = lib.mdDoc "IP address to bind to.";
21       };
23       port = mkOption {
24         type = types.int;
25         default = 8080;
26         description = lib.mdDoc "Port to bind to for HTTP, set to 0 to disable HTTP.";
27       };
29     };
31   };
33   config = mkIf cfg.enable {
35     systemd.services."domoticz" = {
36       description = pkgDesc;
37       wantedBy = [ "multi-user.target" ];
38       after = [ "network-online.target" ];
39       serviceConfig = {
40         DynamicUser = true;
41         StateDirectory = "domoticz";
42         Restart = "always";
43         ExecStart = ''
44           ${pkgs.domoticz}/bin/domoticz -noupdates -www ${toString cfg.port} -wwwbind ${cfg.bind} -sslwww 0 -userdata /var/lib/domoticz -approot ${pkgs.domoticz}/share/domoticz/ -pidfile /var/run/domoticz.pid
45         '';
46       };
47     };
49   };