From dfe714b96427d699857ee67672f7e3a0eaeb62f0 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sat, 16 Jul 2022 21:33:07 +0100 Subject: [PATCH] nixos/shill: Don't use own cache --- nixos/boxes/colony/vms/shill/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/boxes/colony/vms/shill/default.nix b/nixos/boxes/colony/vms/shill/default.nix index 73ac394..c63b3b9 100644 --- a/nixos/boxes/colony/vms/shill/default.nix +++ b/nixos/boxes/colony/vms/shill/default.nix @@ -76,6 +76,11 @@ }; }; + nix.settings = { + # Exclude S3 cache that we're right next to + substituters = mkForce [ "https://cache.nixos.org" ]; + }; + services = { fstrim.enable = true; netdata.enable = true;