From 13f301c4fb91a78341e9dd6f5a03ab26018c2ad7 Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Tue, 10 Feb 2026 16:38:15 -0800 Subject: [PATCH] [Obelisk] Adds Reflex FRP binary caches to the system --- system/hosts/vega/configuration.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/system/hosts/vega/configuration.nix b/system/hosts/vega/configuration.nix index 96c3b61..ab815b4 100644 --- a/system/hosts/vega/configuration.nix +++ b/system/hosts/vega/configuration.nix @@ -107,10 +107,16 @@ }; # Enable flakes - nix.settings.experimental-features = [ - "nix-command" - "flakes" - ]; + nix = { + # Binary caches for Reflex FRP + binaryCaches = [ "https://nixcache.reflex-frp.org" ]; + binaryCachePublicKeys = [ "ryantrinkle.com-1:JJiAKaRv9mWgpVAz8dwewnZe0AzzEAzPkagE9SP5NWI=" ]; + + settings.experimental-features = [ + "nix-command" + "flakes" + ]; + }; services.openssh.enable = true;