From da05b15ff0aba0c2862e65a88b74b1b889ac3a6a Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Wed, 8 Apr 2026 11:36:45 +0100 Subject: [PATCH] Added cachix caching to speed up updates --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 09bdf62..3bc14d3 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,12 @@ { description = "Cian-H's nix config"; + # Add cachix binary cache to prevent massive compilation times + nixConfig = { + extra-substituters = ["https://noctalia.cachix.org"]; + extra-trusted-public-keys = ["noctalia.cachix.org-1:pCOR47nnMEo5thcxNDtzWpOxNFQsBRglJzxWPp3dkU4="]; + }; + inputs = { # Nixpkgs nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";