Merge pull request #221317 from hercules-ci/cleanup-test-nixops-include-build-deps

nixosTests.nixops.unstable.legacyNetwork: Use system.includeBuildDependencies
This commit is contained in:
Robert Hensing 2023-03-15 14:50:06 +01:00 committed by GitHub
commit c101da137a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,12 +30,10 @@ let
virtualisation.additionalPaths = [
pkgs.hello
pkgs.figlet
# This includes build dependencies all the way down. Not efficient,
# but we do need build deps to an *arbitrary* depth, which is hard to
# determine.
(allDrvOutputs nodes.server.config.system.build.toplevel)
];
# TODO: make this efficient, https://github.com/NixOS/nixpkgs/issues/180529
system.includeBuildDependencies = true;
};
server = { lib, ... }: {
imports = [ ./legacy/base-configuration.nix ];