From 0a66862ab6f9a5353043f323a2b1c8a9349ab1dd Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Tue, 17 Feb 2026 17:10:04 +0100 Subject: [PATCH] flake: add Garnix public key to nixConfig --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index 273b35d..160bfd9 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,15 @@ { description = "Read Later Telegram bot"; + nixConfig = { + extra-substituters = [ + "https://cache.garnix.io" + ]; + extra-trusted-public-keys = [ + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" + ]; + }; + inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-utils.url = "github:numtide/flake-utils";