Files
nixverse/nodes/hosts/common/services/btrfs.nix
2025-07-07 02:08:05 +00:00

8 lines
125 B
Nix

{ pkgs, ...}: {
services.btrfs.autoScrub = {
enable = true;
interval = "weekly";
fileSystems = [ "/" ];
};
}