Set up btrfs weekly cleanup.

This commit is contained in:
jay
2025-07-07 02:08:05 +00:00
parent ca885f29f2
commit 168358d8c7

View File

@@ -0,0 +1,7 @@
{ pkgs, ...}: {
services.btrfs.autoScrub = {
enable = true;
interval = "weekly";
fileSystems = [ "/" ];
};
}