dotfiles/terranix/main/containers/ingress-blowhole/default.nix
magic_rb 4a29b6d8d3
Move terranix config into terranix/main
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-04-07 10:45:07 +02:00

42 lines
756 B
Nix

{
config',
elib,
tflib,
vars,
...
}: let
inherit
(elib)
nomadJob
;
inherit
(tflib)
tf
;
in {
imports = [
(elib.buildNixNGSystem {
name = "ingressBlowhole";
hosts = [
"blowhole.hosts.in.redalder.org"
];
})
];
resource."nomad_job"."ingress" = nomadJob {
jobspec = ./job.hcl;
vars = {
flake_ref = "unused";
flake_sha = "unused";
store_path = tf "data.external.nixng-system-ingressBlowhole.result.out";
upstreams = "\${file(\"${./upstreams.conf}\")}";
jellyfin = "\${file(\"${./jellyfin.conf}\")}";
hass = "\${file(\"${./hass.conf}\")}";
};
depends_on = [
"terraform_data.nixng-system-ingressBlowhole-copy"
];
};
}