From 146e302b1d69572d68ff59f7c8dab4d71dbef636 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Thu, 4 Jul 2024 14:04:14 +0200 Subject: [PATCH] nix: add cache --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index cd0c513..4d41dd5 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,11 @@ { description = "Multi contact trajectory generation for the COM using Bezier curves"; + nixConfig = { + extra-substituters = [ "https://gepetto.cachix.org" ]; + extra-trusted-public-keys = [ "gepetto.cachix.org-1:toswMl31VewC0jGkN6+gOelO2Yom0SOHzPwJMY2XiDY=" ]; + }; + inputs = { nixpkgs.url = "github:nim65s/nixpkgs/gepetto"; flake-parts = {