Fix evaluation

This commit is contained in:
Eelco Dolstra 2022-11-27 18:58:21 +01:00
parent f1b5c6876b
commit fc14585610

View file

@ -31,13 +31,16 @@ let
}; };
}; };
config = (import (nixpkgs + "/nixos/lib/eval-config.nix") { cfg = (import (nixpkgs + "/nixos/lib/eval-config.nix") {
modules = [ machine ]; modules = [ machine ];
}).config; system = "x86_64-linux";
});
config = cfg.config;
in in
with import nixpkgs {}; with cfg._module.args.pkgs;
runCommand "test" runCommand "test"
{ buildInputs = [ config.system.path ]; { buildInputs = [ config.system.path ];