From 0bc5bfffd32013bdbba70c27ce217f6047466f09 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar <3998+srid@users.noreply.github.com> Date: Thu, 30 Oct 2025 18:17:28 -0400 Subject: [PATCH] vixen: add vira cache --- configurations/home/srid@vixen.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configurations/home/srid@vixen.nix b/configurations/home/srid@vixen.nix index 3f26cf2..3d174fe 100644 --- a/configurations/home/srid@vixen.nix +++ b/configurations/home/srid@vixen.nix @@ -1,7 +1,7 @@ # This machine uses Omarchy # # So we consciously pick what we need -{ flake, ... }: +{ flake, pkgs, lib, ... }: let inherit (flake) inputs; inherit (inputs) self; @@ -26,4 +26,12 @@ in home.username = "srid"; home.stateVersion = "25.05"; + + nix = { + package = pkgs.nix; + settings = { + substituters = [ "https://vira.rooster-blues.ts.net/cache" ]; + trusted-public-keys = [ "cache:Xqbd+2PnfYCybU+e6thw+qXq0UraEs6JHLK7npEcUhs=" ]; + }; + }; }