mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 21:32:33 +02:00
d71c9d8169
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
27 lines
607 B
Nix
27 lines
607 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (import ./mk-container.nix {inherit lib config;}) mkContainer;
|
|
in {
|
|
imports = [
|
|
(mkContainer {
|
|
name = "mealie";
|
|
hostIp = "10.233.8.1";
|
|
containerIp = "10.233.8.2";
|
|
internet = true;
|
|
nixosConfig = {...}: {
|
|
services.mealie = {
|
|
enable = true;
|
|
port = 8080;
|
|
};
|
|
networking.firewall.allowedTCPPorts = [8080];
|
|
system.stateVersion = "24.05";
|
|
};
|
|
})
|
|
];
|
|
|
|
services.cloudflared.tunnels."${config.var.tunnelId}".ingress."mealie.${config.var.domain}" = "http://10.233.8.2:8080";
|
|
}
|