2
0

Compare commits

...

1 Commits

Author SHA1 Message Date
sinavir 6765aa1722 Add modulesPath argument 2024-02-22 21:45:51 +01:00
+9 -1
View File
@@ -21,7 +21,12 @@ let
eval = pkgs.lib.evalModules {
modules = [
{ _module.args = { inherit pkgs; inherit (pkgs) lim; }; }
{
_module.args = {
inherit pkgs;
inherit (pkgs) lim;
};
}
./modules/hardware.nix
./modules/base.nix
./modules/busybox.nix
@@ -35,6 +40,9 @@ let
boot.imageType = imageType;
}
];
specialArgs = {
modulesPath = builtins.toString ./modules;
};
};
config = eval.config;