From c68f5cdc15abbcf53426f359647a475d83d59005 Mon Sep 17 00:00:00 2001 From: Emmet Date: Sun, 8 Dec 2024 10:09:22 -0600 Subject: [PATCH] Hopefully this fixes substituters? --- profiles/work/configuration.nix | 6 ++---- profiles/work/home.nix | 4 +++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/profiles/work/configuration.nix b/profiles/work/configuration.nix index da03717e..73e6aec9 100644 --- a/profiles/work/configuration.nix +++ b/profiles/work/configuration.nix @@ -41,14 +41,12 @@ # Substituters nix.settings = { substituters = [ - "https://hyprland.cachix.org" - "https://nix-community.cachix.org" - ]; - trusted-substituters = [ + "https://cache.nixos.org" "https://hyprland.cachix.org" "https://nix-community.cachix.org" ]; trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ]; diff --git a/profiles/work/home.nix b/profiles/work/home.nix index d6222d06..320ac0a6 100644 --- a/profiles/work/home.nix +++ b/profiles/work/home.nix @@ -28,11 +28,13 @@ nix.package = pkgs.nix; nix.settings = { - extra-substituters = [ + substituters = [ + "https://cache.nixos.org" "https://hyprland.cachix.org" "https://nix-community.cachix.org" ]; trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];