From fe8b1db0fdb6494adbebc523049b9b711f503ea4 Mon Sep 17 00:00:00 2001
From: Antoine Martin <antoine@alarsyo.net>
Date: Mon, 6 Jan 2025 15:14:50 +0100
Subject: [PATCH] thanatos: avoid GC

---
 hosts/thanatos/default.nix | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hosts/thanatos/default.nix b/hosts/thanatos/default.nix
index ab960eb..afa74c0 100644
--- a/hosts/thanatos/default.nix
+++ b/hosts/thanatos/default.nix
@@ -93,4 +93,6 @@ in {
   environment.systemPackages = with pkgs; [
     docker-compose
   ];
+
+  nix.gc.automatic = lib.mkForce false;
 }