nixos-config/common/hardware/btrfs.nix

8 lines
135 B
Nix
Raw Normal View History

2024-04-22 04:57:27 +02:00
{lib, ...}: {
services.btrfs.autoScrub = {
enable = true;
interval = "weekly";
2024-04-22 05:51:31 +02:00
fileSystems = lib.mkDefault ["/"];
2024-04-22 04:57:27 +02:00
};
}