mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-04 22:14:58 +01:00
4a29b6d8d3
Signed-off-by: magic_rb <magic_rb@redalder.org>
16 lines
241 B
Nix
16 lines
241 B
Nix
{elib, ...}: let
|
|
inherit
|
|
(elib)
|
|
nomadJob
|
|
;
|
|
in {
|
|
resource."nomad_job"."mesh" = nomadJob {
|
|
jobspec = ./job.hcl;
|
|
vars = {
|
|
"datacenters" = builtins.toJSON [
|
|
"do-1"
|
|
"homelab-1"
|
|
];
|
|
};
|
|
};
|
|
}
|