modules: propagate minimal variable in modules/default.nix

Setting minimal from a flake configuration was not working,
this propagates it so that it does.
This commit is contained in:
Alistair Potts 2026-01-09 17:53:03 -05:00 committed by Austin Horstman
parent b3f737e70f
commit 5da90b852b

View file

@ -23,7 +23,7 @@ let
extendedLib = import ./lib/stdlib-extended.nix lib;
hmModules = import ./modules.nix {
inherit check pkgs;
inherit check pkgs minimal;
lib = extendedLib;
};