mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 21:32:33 +02:00
302f0ceec9
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
10 lines
302 B
Nix
10 lines
302 B
Nix
# Mealie is a recipe management and meal planning application.
|
|
{config, ...}: {
|
|
services.mealie = {
|
|
enable = true;
|
|
port = 8092;
|
|
};
|
|
|
|
services.cloudflared.tunnels."${config.var.tunnelId}".ingress."mealie.${config.var.domain}" = "http://localhost:${toString config.services.mealie.port}";
|
|
}
|