imp: add some provenance info on defaults

This commit is contained in:
David Arnold 2021-05-31 21:21:48 -05:00
parent 39badb2084
commit 80d3a595f5
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08
2 changed files with 2 additions and 0 deletions

View file

@ -53,6 +53,7 @@ in
description = "Default to apply to test"; description = "Default to apply to test";
type = types.unspecified; type = types.unspecified;
default = { }; default = { };
apply = default: { _file = "testing.defaults"; } // default;
}; };
}; };
})); }));

View file

@ -40,6 +40,7 @@ in
config.testing.defaults = [{ config.testing.defaults = [{
features = [ "docker" ]; features = [ "docker" ];
default = { default = {
_file = "testing.docker.registryUrl";
docker.registry.url = cfg.registryUrl; docker.registry.url = cfg.registryUrl;
}; };
}]; }];