Skip to content

Commit

Permalink
nixos/boot/loader/generic-extlinux-compatible: fix eval on cross as well
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 committed Jan 11, 2025
1 parent fbb4d05 commit 914d17e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let
# The builder used to write during system activation
builder = import ./extlinux-conf-builder.nix { inherit lib pkgs; };
# The builder exposed in populateCmd, which runs on the build architecture
populateBuilder = import ./extlinux-conf-builder.nix { pkgs = pkgs.buildPackages; };
populateBuilder = import ./extlinux-conf-builder.nix { inherit lib; pkgs = pkgs.buildPackages; };
in
{
options = {
Expand Down

0 comments on commit 914d17e

Please sign in to comment.