From 4809daa3d67ad734e93c48a85c127f6d788fa286 Mon Sep 17 00:00:00 2001 From: magic_rb Date: Fri, 9 Feb 2024 20:08:57 +0100 Subject: [PATCH] Need to apply `recurseIntoAttrs` twice for `packages` Signed-off-by: magic_rb --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index cbaaf33..db29283 100644 --- a/flake.nix +++ b/flake.nix @@ -144,7 +144,7 @@ in { nixng = recurseIntoAttrs (mapAttrs (_: v: v.config.system.build.toplevel) config.flake.nixngConfigurations); nixos = recurseIntoAttrs (mapAttrs (_: v: v.config.system.build.toplevel) config.flake.nixosConfigurations); - packages = recurseIntoAttrs config.flake.packages; + packages = recurseIntoAttrs (mapAttrs (_: v: recurseIntoAttrs v) config.flake.packages); }; uterranix.config = [