nixos-config/modules/system/web-services/atuin.nix

27 lines
549 B
Nix

{ config, lib, ... }:
let
cfg = config.custom.web-services.atuin;
in
{
options.custom.web-services.atuin = {
enable = lib.mkEnableOption "";
domain = lib.mkOption {
type = lib.types.nonEmptyStr;
default = "";
};
port = lib.mkOption {
type = lib.types.port;
default = 8849;
};
};
config = lib.mkIf cfg.enable {
services.atuin = {
enable = true;
openRegistration = true;
inherit (cfg) port;
};
custom.services.caddy.virtualHosts.${cfg.domain}.port = cfg.port;
};
}