nixos/phylactery: init

This commit is contained in:
Nguyễn Gia Phong 2022-06-28 16:41:44 +09:00
parent 512670498f
commit f5f338c846
No known key found for this signature in database
GPG Key ID: 27148B2C06A2224B
2 changed files with 52 additions and 0 deletions

View File

@ -1078,6 +1078,7 @@
./services/web-apps/nexus.nix
./services/web-apps/nifi.nix
./services/web-apps/node-red.nix
./services/web-apps/phylactery.nix
./services/web-apps/pict-rs.nix
./services/web-apps/peertube.nix
./services/web-apps/plantuml-server.nix

View File

@ -0,0 +1,51 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.phylactery;
in {
options.services.phylactery = {
enable = mkEnableOption "Whether to enable Phylactery server";
host = mkOption {
type = types.str;
default = "localhost";
description = "Listen host for Phylactery";
};
port = mkOption {
type = types.port;
description = "Listen port for Phylactery";
};
library = mkOption {
type = types.path;
description = "Path to CBZ library";
};
package = mkOption {
type = types.package;
default = pkgs.phylactery;
defaultText = literalExpression "pkgs.phylactery";
description = "The Phylactery package to use";
};
};
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 ];
}