From 4d7ac77074b906cc258578ef241e713d78b24734 Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:16:03 +1000 Subject: [PATCH] nix: disable nix on darwin to use determinate nix instead --- modules/darwin/nix.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/modules/darwin/nix.nix b/modules/darwin/nix.nix index 45ce730..b94c472 100644 --- a/modules/darwin/nix.nix +++ b/modules/darwin/nix.nix @@ -25,12 +25,8 @@ fi ''; - # nix auto garbage collection - nix.gc = { - automatic = true; - interval = { Weekday = 0; Hour = 0; Minute = 0; }; - options = "--delete-older-than 7d"; - }; + # use determinate nix + nix.enable = false; # changing this might break system.stateVersion = 5;