dotfiles/terranix/containers/website/default.nix
magic_rb aff0158ef7
Reformat the whole flake using alejandra
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-02 22:17:03 +01:00

24 lines
522 B
Nix

{
pkgs,
elib,
vars,
config',
...
}: let
inherit
(elib)
nfsVolume
nomadJob
;
in {
resource."nomad_job"."website" = 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 = builtins.toJSON (builtins.mapAttrs (_: builtins.unsafeDiscardStringContext) {
website = config'.flake.nixngConfigurations.website.config.system.build.toplevel;
});
};
};
}