From 9aa9412ce3e334729aa2ce47feb936780321c3ce Mon Sep 17 00:00:00 2001 From: clerie Date: Sat, 1 Jul 2023 16:59:24 +0200 Subject: [PATCH] flake.nix: add substituters hints --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index 2c2e855..dd2b267 100644 --- a/flake.nix +++ b/flake.nix @@ -106,5 +106,14 @@ nixosConfigurations = helper.buildHosts self.nixosConfigurations; iso = self.nixosConfigurations._iso.config.system.build.isoImage; }; + + nixConfig = { + extra-substituters = [ + "https://nix-cache.clerie.de" + ]; + extra-trusted-public-keys = [ + "nix-cache.clerie.de:bAt1GJTS9BOTcXFWj3nURrSlcjqikCev9yDvqArMP5g=" + ]; + }; }; }