From 80d3a595f5e0bcd32c51f1115e7a9ac3f9ddb3c3 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Mon, 31 May 2021 21:21:48 -0500 Subject: [PATCH] imp: add some provenance info on defaults --- modules/testing/default.nix | 1 + modules/testing/docker.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/testing/default.nix b/modules/testing/default.nix index b813b3d..09c7a11 100644 --- a/modules/testing/default.nix +++ b/modules/testing/default.nix @@ -53,6 +53,7 @@ in description = "Default to apply to test"; type = types.unspecified; default = { }; + apply = default: { _file = "testing.defaults"; } // default; }; }; })); diff --git a/modules/testing/docker.nix b/modules/testing/docker.nix index 63342f9..7b2adbd 100644 --- a/modules/testing/docker.nix +++ b/modules/testing/docker.nix @@ -40,6 +40,7 @@ in config.testing.defaults = [{ features = [ "docker" ]; default = { + _file = "testing.docker.registryUrl"; docker.registry.url = cfg.registryUrl; }; }];