From a66589701004d82a90973e271e9f35dc60e99db2 Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Fri, 12 Sep 2025 20:43:51 +0800 Subject: [PATCH] feat(guix): Add modify some guix settings --- nixos/modules/programs/guix.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/guix.nix b/nixos/modules/programs/guix.nix index 2f1846a..609fb08 100644 --- a/nixos/modules/programs/guix.nix +++ b/nixos/modules/programs/guix.nix @@ -15,8 +15,10 @@ in config = lib.mkIf cfg.enable { services.guix = { enable = true; - gc.enable = true; - publish.enable = true; + gc = { + enable = true; + dates = "weekly"; + }; }; }; }