depot/third_party/nixpkgs/nixos/modules/services/web-apps/phylactery.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

46 lines
1.1 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.phylactery;
in {
options.services.phylactery = {
enable = mkEnableOption (lib.mdDoc "Phylactery server");
host = mkOption {
type = types.str;
default = "localhost";
description = lib.mdDoc "Listen host for Phylactery";
};
port = mkOption {
type = types.port;
description = lib.mdDoc "Listen port for Phylactery";
};
library = mkOption {
type = types.path;
description = lib.mdDoc "Path to CBZ library";
};
package = mkPackageOption pkgs "phylactery" { };
};
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 ];
}