From 0abb1adb9b1b49180895bbb116b4dbc3b6d1f8d1 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Wed, 12 May 2021 18:16:35 -0400 Subject: [PATCH] wip: strip down local runtime options --- modules/testing/runtime/local.nix | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/modules/testing/runtime/local.nix b/modules/testing/runtime/local.nix index bb17380..335ea6d 100644 --- a/modules/testing/runtime/local.nix +++ b/modules/testing/runtime/local.nix @@ -38,27 +38,6 @@ in { type = types.package; description = "Runtime script"; }; - - docker = { - registryUrl = mkOption { - type = types.str; - description = "Docker registry url"; - }; - - copyScript = mkOption { - type = types.package; - description = "Script used to copy docker images"; - }; - }; - copyImages = mkOption { - type = types.package; - description = "Script used to copy docker images"; - }; - - registryUrl = mkOption { - type = types.str; - description = "Registry url to copy docker images"; - }; }; config.testing.runtime.local.script = script;