2022-07-14 12:49:19 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let cfg = config.services.phylactery;
|
|
|
|
in {
|
|
|
|
options.services.phylactery = {
|
2022-09-09 14:08:57 +00:00
|
|
|
enable = mkEnableOption (lib.mdDoc "Whether to enable Phylactery server");
|
2022-07-14 12:49:19 +00:00
|
|
|
|
|
|
|
host = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "localhost";
|
2022-08-12 12:06:08 +00:00
|
|
|
description = lib.mdDoc "Listen host for Phylactery";
|
2022-07-14 12:49:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
type = types.port;
|
2022-08-12 12:06:08 +00:00
|
|
|
description = lib.mdDoc "Listen port for Phylactery";
|
2022-07-14 12:49:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
library = mkOption {
|
|
|
|
type = types.path;
|
2022-08-12 12:06:08 +00:00
|
|
|
description = lib.mdDoc "Path to CBZ library";
|
2022-07-14 12:49:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.phylactery;
|
|
|
|
defaultText = literalExpression "pkgs.phylactery";
|
2022-08-12 12:06:08 +00:00
|
|
|
description = lib.mdDoc "The Phylactery package to use";
|
2022-07-14 12:49:19 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.phylactery = {
|
|
|
|
environment = {
|
|
|
|
PHYLACTERY_ADDRESS = "${cfg.host}:${toString cfg.port}";
|
|
|
|
PHYLACTERY_LIBRARY = "${cfg.library}";
|
|
|
|
};
|
|
|
|
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
ConditionPathExists = cfg.library;
|
|
|
|
DynamicUser = true;
|
|
|
|
ExecStart = "${cfg.package}/bin/phylactery";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
meta.maintainers = with maintainers; [ McSinyx ];
|
|
|
|
}
|