summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-01-14 12:16:44 +0100
committerMatthias Beyer <matthias.beyer@ifm.com>2022-02-14 16:04:54 +0100
commitb6c9ac0ef7e27b092593f1db3107c4f68274afd8 (patch)
tree6646440bf01faec7a1b10a945cd40972de9d6979
parentd1e41a38e04b3a1abab3838030d0e2222a877f02 (diff)
Tie packages together with containers
Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
-rw-r--r--examples/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/default.nix b/examples/default.nix
new file mode 100644
index 00000000..0cfcc624
--- /dev/null
+++ b/examples/default.nix
@@ -0,0 +1,10 @@
+{ pkgs ? (import <nixpkgs> {})
+}:
+
+let
+ packages = import ./packages.nix { inherit pkgs; };
+ containers = import ./containers.nix { inherit pkgs packages; };
+in
+with containers; [
+ tedge-container
+]