nixos/system/core/btrfs.nix
2025-03-12 15:43:41 +01:00

11 lines
152 B
Nix

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