9 lines
259 B
Nix
9 lines
259 B
Nix
|
# Services to run on BTRFS filesystems.
|
||
|
# Only run if the root partition is BTRFS.
|
||
|
{ config, lib, ... }: {
|
||
|
services.btrfs.autoScrub = lib.mkIf (config.fileSystems."/".fsType == "btrfs") {
|
||
|
enable = true;
|
||
|
interval = "weekly";
|
||
|
fileSystems = [ "/" ];
|
||
|
};
|
||
|
}
|