ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.domoticz;
|
|
pkgDesc = "Domoticz home automation";
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.domoticz = {
|
|
enable = mkEnableOption (lib.mdDoc pkgDesc);
|
|
|
|
bind = mkOption {
|
|
type = types.str;
|
|
default = "0.0.0.0";
|
|
description = lib.mdDoc "IP address to bind to.";
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.int;
|
|
default = 8080;
|
|
description = lib.mdDoc "Port to bind to for HTTP, set to 0 to disable HTTP.";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services."domoticz" = {
|
|
description = pkgDesc;
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network-online.target" ];
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
StateDirectory = "domoticz";
|
|
Restart = "always";
|
|
ExecStart = ''
|
|
${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
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|