mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-12 09:51:59 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
24 lines
556 B
Nix
24 lines
556 B
Nix
{
|
|
config',
|
|
elib,
|
|
vars,
|
|
...
|
|
}: let
|
|
inherit
|
|
(elib)
|
|
nomadJob
|
|
;
|
|
in {
|
|
resource."nomad_job"."ingress" = nomadJob {
|
|
jobspec = ./job.hcl;
|
|
|
|
vars = {
|
|
flake_ref = "${vars.flake_host}?rev=${vars.flake_rev}&ref=${vars.flake_ref}";
|
|
flake_sha = vars.flake_sha;
|
|
store_path = config'.flake.nixngConfigurations.ingressBlowhole.config.system.build.toplevel;
|
|
upstreams = "\${file(\"${./upstreams.conf}\")}";
|
|
jellyfin = "\${file(\"${./jellyfin.conf}\")}";
|
|
hass = "\${file(\"${./hass.conf}\")}";
|
|
};
|
|
};
|
|
}
|