From 7b567a5acabf59d6ac9d108074876f4134c7370b Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sun, 30 Aug 2026 09:31:39 -0700 Subject: [PATCH 1/1] =?utf8?q?Change=20default=20false=E2=86=92true=20for?= =?utf8?q?=20user=20profile=20management=20($HOME/.local/state/nix/profile?= =?utf8?q?s/)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It's been 3.5 months since monitorHomeProfiles=true, so management will have some history data to act upon. --- modules/profile-gc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/profile-gc.nix b/modules/profile-gc.nix index bc6eb5a..c8f68ce 100644 --- a/modules/profile-gc.nix +++ b/modules/profile-gc.nix @@ -42,7 +42,7 @@ in { manageHomeProfiles = lib.mkOption { description = "Manage profiles in users' $HOME/.local/state/nix/profiles/"; type = lib.types.bool; - default = false; # Will flip to true later + default = true; }; dryRun = lib.mkOption { description = "Say what would have been deleted rather than actually deleting profiles"; -- 2.51.2