summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-01-15 18:10:37 +0100
committerMatthias Beyer <matthias.beyer@ifm.com>2022-02-14 16:04:54 +0100
commit4719ffbf21a018c67dd79bd165b712fd5a504d80 (patch)
tree8e85a3d4fc61f06d9221c5c220cdbe6157d85ec9
parentb4fe6fa5834cac61b6323853f119110dafd06363 (diff)
Make attr set recursive, so we can include stuff into shell from within attr set
Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
-rw-r--r--examples/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/default.nix b/examples/default.nix
index fa93d9e2..8fd4680f 100644
--- a/examples/default.nix
+++ b/examples/default.nix
@@ -18,7 +18,7 @@ let
configuration = clusterConfig;
};
in
-{} // containers // packages // {
+{} // containers // packages // (rec {
config = buildConfig;
deploy-to-kind = pkgs.callPackage ./nix/deploy-to-kind.nix {
@@ -38,4 +38,4 @@ in
deploy-to-kind
];
};
-}
+})