From a37ecd626b24b77d6031cb4015a3b59287a277a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Sat, 1 Jun 2024 12:36:16 +0300 Subject: [PATCH] Force redownload of tarballs every time, since changing system configs now relies on pulling from GitHub --- base.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/base.nix b/base.nix index 6db6ba9..71cf73d 100644 --- a/base.nix +++ b/base.nix @@ -112,7 +112,10 @@ }; nix = { - settings.auto-optimise-store = true; + settings = { + auto-optimise-store = true; + tarball-ttl = 0; + }; gc = { automatic = true; options = "--delete-older-than 7d";