From 503de488fe53cc41efa67582c1dc08c97b87ab1c Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Mon, 3 Jun 2024 12:14:51 -0400 Subject: [PATCH] base image generation Signed-off-by: ahuston-0 --- hydra/jobs.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hydra/jobs.nix b/hydra/jobs.nix index 7b65d76..7033994 100644 --- a/hydra/jobs.nix +++ b/hydra/jobs.nix @@ -3,10 +3,10 @@ let inherit (inputs.nixpkgs.lib) mapAttrs; getCfg = _: cfg: cfg.config.system.build.toplevel; - getFormat = - _: cfg: format: - cfg.config.formats.${format}; - imageWrapper = format: mapAttrs getFormat outputs.nixosConfigurations format; + # getFormat = + # _: cfg: format: + # cfg.config.formats.${format}; + imageWrapper = format: mapAttrs (_: cfg: cfg.config.formats.${format}) outputs.nixosConfigurations; in { inherit (outputs) formatter devShells;