From fd7c3a9ea21e2f840df05bca3fd520b36ea003f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Mon, 18 Apr 2022 12:19:21 +0200 Subject: [PATCH] :rocket: add jupyterwith cachix --- modules/cachix/jupyterwith.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 modules/cachix/jupyterwith.nix diff --git a/modules/cachix/jupyterwith.nix b/modules/cachix/jupyterwith.nix new file mode 100644 index 0000000..f65fc85 --- /dev/null +++ b/modules/cachix/jupyterwith.nix @@ -0,0 +1,8 @@ +{ + nix.settings = { + substituters = [ "https://jupyterwith.cachix.org" ]; + trusted-public-keys = [ + "jupyterwith.cachix.org-1:/kDy2B6YEhXGJuNguG1qyqIodMyO4w8KwWH4/vAc7CI=" + ]; + }; +}