default.nix: pass through host config and fs

This commit is contained in:
Colin 2024-06-15 03:18:16 +00:00
parent 417b85450c
commit 60a5c61500

View File

@ -31,6 +31,8 @@ let
# with nested aliases for other common build targets
in host.config.system.build.toplevel.overrideAttrs (base: {
passthru = (base.passthru or {}) // {
config = host.config;
fs = host.config.sane.fs;
img = host.config.system.build.img;
pkgs = host.config.system.build.pkgs;
programs = lib.mapAttrs (_: p: p.package) host.config.sane.programs;