]> git.scottworley.com Git - nix-profile-gc/commitdiff
Change default false→true for user profile management ($HOME/.local/state/nix/profiles/) master
authorScott Worley <scottworley@scottworley.com>
Sun, 30 Aug 2026 16:31:39 +0000 (09:31 -0700)
committerScott Worley <scottworley@scottworley.com>
Sun, 30 Aug 2026 16:31:39 +0000 (09:31 -0700)
It's been 3.5 months since monitorHomeProfiles=true, so management will
have some history data to act upon.

modules/profile-gc.nix

index bc6eb5afb140abb72872f1d609283b5b83833143..c8f68ce33aee71fef588542e84e9d9dcfca30781 100644 (file)
@@ -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";