Skip to content

Commit

Permalink
fixup! feat(nix, ci/pr): add OS configuration package and build it on…
Browse files Browse the repository at this point in the history
… pull-requests
  • Loading branch information
steveej committed Jun 13, 2024
1 parent a23189d commit 7a9b8b5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,13 @@
&& (key != "tfgrid-hpos")
)
osConfigs;
asStrings = lib.mapAttrsToList (key: value: builtins.trace "evaluating ${key} (${value.pkgs.system})..." "ln -sf ${value.config.system.build.toplevel} $out/") filteredBySystem;
asStrings =
lib.mapAttrsToList (
key: value:
builtins.trace "evaluating ${key} (${value.pkgs.system})..."
"ln -s ${value.config.system.build.toplevel} $out/${key}"
)
filteredBySystem;
in
pkgs.stdenv.mkDerivation {
name = "check-osconfigurations";
Expand Down

0 comments on commit 7a9b8b5

Please sign in to comment.