From: Scott Worley Date: Sun, 30 Aug 2026 16:31:39 +0000 (-0700) Subject: Change default false→true for user profile management ($HOME/.local/state/nix/profiles/) X-Git-Url: http://git.scottworley.com/nix-profile-gc/commitdiff_plain/7b567a5acabf59d6ac9d108074876f4134c7370b Change default false→true for user profile management ($HOME/.local/state/nix/profiles/) It's been 3.5 months since monitorHomeProfiles=true, so management will have some history data to act upon. --- 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";