nixos/system/btrfs.nix
2024-06-07 01:02:48 +02:00

10 lines
154 B
Nix

{...}: {
services.btrfs.autoScrub = {
enable = true;
interval = "Fri 07:00";
fileSystems = [
"/persistent"
"/nix"
];
};
}