From 6adbdb7fead4e6a8f962ecc0cc4ac0a682100dbd Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Thu, 28 Sep 2023 17:39:06 +0200 Subject: [PATCH] feat: add my cachix instance --- hosts/configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 7b4eae4..059b061 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -58,6 +58,7 @@ jetbrains-mono font-awesome # Icons corefonts # MS + vistafonts (nerdfonts.override { # Nerdfont Icons override fonts = [ "FiraCode" @@ -122,6 +123,13 @@ nix = { # Nix Package Manager settings settings ={ auto-optimise-store = true; # Optimise syslinks + substituters = [ + "https://cache.nixos.org" + "https://rutherther.cachix.org" + ]; + trusted-public-keys = [ + "rutherther.cachix.org-1:O9st5Dq/VHb0T8+vwZ0aP4sjzzCn7Ry60wSyXaRW7j8=" + ]; }; gc = { # Automatic garbage collection automatic = true; -- 2.48.1