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