8 lines
135 B
Nix
8 lines
135 B
Nix
{lib, ...}: {
|
|
services.btrfs.autoScrub = {
|
|
enable = true;
|
|
interval = "weekly";
|
|
fileSystems = lib.mkDefault ["/"];
|
|
};
|
|
}
|