about summary refs log blame commit diff
path: root/ops/modules/btrfs-auto-scrub.nix
blob: 748bb75c5fd83969dd3cec474409b44cee92eaa3 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                
                                                  














                                                                             
# Automatically performs a scrub on all btrfs filesystems configured in
# `config.fileSystems` on a daily schedule (by default). Activated by importing.
{ config, lib, ... }:

{
  config = {
    services = {
      btrfs.autoScrub = {
        enable = true;
        interval = lib.mkDefault "*-*-* 03:30:00";
        # gather all btrfs fileSystems, extra ones can be added via the NixOS
        # module merging mechanism, of course.
        fileSystems = lib.concatLists (
          lib.mapAttrsToList
            (
              _:
              { fsType, mountPoint, ... }:
              if fsType == "btrfs" then [ mountPoint ] else [ ]
            )
            config.fileSystems
        );
      };
    };
  };
}