2022-06-28 09:41:44 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let cfg = config.services.phylactery;
|
|
|
|
in {
|
|
|
|
options.services.phylactery = {
|
2024-04-13 14:54:15 +02:00
|
|
|
enable = mkEnableOption "Phylactery server";
|
2022-06-28 09:41:44 +02:00
|
|
|
|
|
|
|
host = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "localhost";
|
2024-04-13 14:54:15 +02:00
|
|
|
description = "Listen host for Phylactery";
|
2022-06-28 09:41:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
type = types.port;
|
2024-04-13 14:54:15 +02:00
|
|
|
description = "Listen port for Phylactery";
|
2022-06-28 09:41:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
library = mkOption {
|
|
|
|
type = types.path;
|
2024-04-13 14:54:15 +02:00
|
|
|
description = "Path to CBZ library";
|
2022-06-28 09:41:44 +02:00
|
|
|
};
|
|
|
|
|
2023-11-27 01:19:27 +01:00
|
|
|
package = mkPackageOption pkgs "phylactery" { };
|
2022-06-28 09:41:44 +02: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 ];
|
|
|
|
}
|