From 400388a25bff2ff58039281f665968a125ce0dae Mon Sep 17 00:00:00 2001 From: Malix - Alix Brunet Date: Sat, 21 Feb 2026 23:38:19 +0100 Subject: [PATCH] feat(flake): substituters --- flake.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/flake.nix b/flake.nix index e5b910d..f22a76c 100644 --- a/flake.nix +++ b/flake.nix @@ -17,6 +17,18 @@ flake = false; }; }; + + nixConfig = { + extra-substituters = [ + "https://attic.xuyh0120.win/lantian" + "https://cache.garnix.io" + ]; + extra-trusted-public-keys = [ + "lantian:EeAUQ+W+6r7EtwnmYjeVwx5kOGEBpjlBfPlzGlTNvHc=" + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" + ]; + }; + outputs = { self, flake-parts, ... }@inputs: flake-parts.lib.mkFlake { inherit inputs; } (