summaryrefslogtreecommitdiff
path: root/Omni
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2025-05-30 10:20:03 -0400
committerBen Sima <ben@bsima.me>2025-06-13 11:19:37 -0400
commita0b776e29d8866329c87108f573a985e64f2ba2e (patch)
tree9e5f09d31f38ea1de8ad25091f9a57e9fb3b636e /Omni
parent089f4db92064cff021684312317a9f7bbdcde4ae (diff)
Add nix-community.cachix substituter everywhere
Not sure if this will help but I figure one more substituter can't hurt.
Diffstat (limited to 'Omni')
-rw-r--r--Omni/Os/Base.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/Omni/Os/Base.nix b/Omni/Os/Base.nix
index 3464af4..0489b1c 100644
--- a/Omni/Os/Base.nix
+++ b/Omni/Os/Base.nix
@@ -6,7 +6,8 @@ in {
boot.tmp.cleanOnBoot = true;
networking.firewall.allowPing = true;
networking.firewall.allowedTCPPorts = [ports.et];
- nix.settings.substituters = ["https://cache.nixos.org"]; # "ssh://dev.bensima.com" ];
+ nix.settings.substituters = ["https://cache.nixos.org" "https://nix-community.cachix.org"]; # "ssh://dev.bensima.com" ];
+ nix.settings.trusted-public-keys = ["nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="];
nix.gc.automatic = true;
nix.gc.dates = "Sunday 02:15";
nix.optimise.automatic = true;