From be6be71144c5b9524ad9b89d7c35befad1292a8b Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 12 Dec 2023 09:04:02 +0800 Subject: [PATCH] hosts/ni: enable Guix garbage collection service --- hosts/ni/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/ni/default.nix b/hosts/ni/default.nix index 1d81aaed..af3db497 100644 --- a/hosts/ni/default.nix +++ b/hosts/ni/default.nix @@ -142,7 +142,13 @@ # Installing Guix within NixOS. Now that's some OTP rarepair material right # there. - services.guix.enable = true; + services.guix = { + enable = true; + gc = { + enable = true; + dates = "weekly"; + }; + }; # Set your time zone. time.timeZone = "Asia/Manila";