mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
418ff715ac
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
10 lines
304 B
Nix
10 lines
304 B
Nix
# Mealie is a recipe management and meal planning application.
|
|
{config, ...}: {
|
|
services.mealie = {
|
|
enable = true;
|
|
port = 8092;
|
|
};
|
|
|
|
services.cloudflared.tunnels."a1dfa315-7fc3-4a65-8c02-8387932c35c3".ingress."mealie.hadi.icu" = "http://localhost:${toString config.services.mealie.port}";
|
|
}
|