19 lines
437 B
Nix
19 lines
437 B
Nix
{ lib, namespace, ... }:
|
|
let
|
|
inherit (lib.${namespace}) mkOpt mkReverseProxyOpt;
|
|
in
|
|
with lib;
|
|
{
|
|
options.${namespace}.services.actual = {
|
|
enable = mkEnableOption "actual service";
|
|
|
|
port = mkOpt types.int 80 "Port for Actual to be hosted on";
|
|
|
|
localAddress = mkOpt types.str "127.0.0.1" "local address of the service";
|
|
|
|
dataDir = mkOpt types.str "" "Path to the data dir";
|
|
|
|
reverseProxy = mkReverseProxyOpt;
|
|
};
|
|
}
|