nixos-config/modules/system/services/actualbudget/default.nix

29 lines
553 B
Nix

{ config, lib, ... }:
let
cfg = config.custom.services.actualbudget;
in
{
options.custom.services.actualbudget = {
enable = lib.mkEnableOption "";
domain = lib.mkOption {
type = lib.types.nonEmptyStr;
default = "";
};
port = lib.mkOption {
type = lib.types.port;
default = 8888;
};
};
config = lib.mkIf cfg.enable {
meta.ports.list = [ cfg.port ];
services.actual = {
enable = true;
settings = {
hostname = "localhost";
inherit (cfg) port;
};
};
};
}