grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / misc / domoticz.nix
blob13e56f2faea551e09d0816b413ef9f8545bf0bb7
1 { lib, pkgs, config, ... }:
2 let
4   cfg = config.services.domoticz;
5   pkgDesc = "Domoticz home automation";
7 in {
9   options = {
11     services.domoticz = {
12       enable = lib.mkEnableOption pkgDesc;
14       bind = lib.mkOption {
15         type = lib.types.str;
16         default = "0.0.0.0";
17         description = "IP address to bind to.";
18       };
20       port = lib.mkOption {
21         type = lib.types.port;
22         default = 8080;
23         description = "Port to bind to for HTTP, set to 0 to disable HTTP.";
24       };
26     };
28   };
30   config = lib.mkIf cfg.enable {
32     systemd.services."domoticz" = {
33       description = pkgDesc;
34       wantedBy = [ "multi-user.target" ];
35       wants = [ "network-online.target" ];
36       after = [ "network-online.target" ];
37       serviceConfig = {
38         DynamicUser = true;
39         StateDirectory = "domoticz";
40         Restart = "always";
41         ExecStart = ''
42           ${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
43         '';
44       };
45     };
47   };