nixos/modules/services/tandoor-recipes/default.nix
2025-02-26 20:27:58 +01:00

34 lines
729 B
Nix

# self-hosted recipe manager
{ config, lib, ... }:
let
cfg = config.my.services.tandoor-recipes;
inherit (config.networking) domain;
in
{
options.my.services.tandoor-recipes = with lib; {
enable = mkEnableOption "Tandoor Recipes";
};
config = lib.mkIf cfg.enable {
services.tandoor-recipes = {
enable = true;
};
# Proxy to Tandoor-Recipes
my.services.webserver.virtualHosts = [
{
subdomain = "recipes";
inherit (config.services.tandoor-recipes) port;
}
];
webapps.apps.tandoor-recipes = {
dashboard = {
name = "Recipes";
category = "app";
icon = "utensils";
url = "https://recipes.${domain}";
};
};
};
}