From 2e50a09448f66458ccb37ce01bc3d88491279807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Roche?= Date: Fri, 3 Oct 2025 16:01:24 +0200 Subject: [PATCH] chore: add our substituter config to flake.nix --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index db14dac9a..51efa2b51 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,11 @@ { description = "Prototype tooling for deploying PostgreSQL"; - + nixConfig = { + extra-substituters = [ "https://nix-postgres-artifacts.s3.amazonaws.com" ]; + extra-trusted-public-keys = [ + "nix-postgres-artifacts:dGZlQOvKcNEjvT7QEAJbcV6b6uk7VF/hWMjhYleiaLI=" + ]; + }; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; flake-utils.url = "github:numtide/flake-utils";