Skip to content

Commit

Permalink
nix: forward arguments correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Dec 22, 2024
1 parent cb32128 commit 67d2c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/nix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ in
(lib.mkIf config.boot.isContainer (pkgs.writeShellScript "diff-closures-on-nspawn" diffBoot))
(lib.mkIf (config.boot.loader.external.enable && !config.boot.isContainer) (lib.mkForce (pkgs.writeShellScript "install-bootloader-external" ''
${diffBoot}
exec ${config.boot.loader.external.installHook}
exec ${config.boot.loader.external.installHook} "$@"
'')))
]);
};
Expand Down

0 comments on commit 67d2c72

Please sign in to comment.