diff --git a/devenv/containers/k8s-tools/devenv.nix b/devenv/containers/k8s-tools/devenv.nix index e4549703..7fcc19cf 100644 --- a/devenv/containers/k8s-tools/devenv.nix +++ b/devenv/containers/k8s-tools/devenv.nix @@ -1,9 +1,14 @@ {pkgs, ...}: let + oci_name = "k8s-tools"; oci_version = "latest"; + in { + containers = { + oci_name = { + isBuilding = true; name = oci_name; @@ -23,5 +28,7 @@ in { startupCommand = pkgs.hello; }; + }; + } diff --git a/devenv/containers/test/devenv.nix b/devenv/containers/test/devenv.nix index 4b2e4da3..5589c63c 100644 --- a/devenv/containers/test/devenv.nix +++ b/devenv/containers/test/devenv.nix @@ -1,9 +1,14 @@ {pkgs, ...}: let + oci_name = "test"; oci_version = "latest"; + in { + containers = { + oci_name = { + isBuilding = true; name = oci_name; @@ -23,5 +28,7 @@ in { startupCommand = pkgs.hello; }; + }; + }