nixos/system/btrfs.nix
2025-02-27 00:44:53 +01:00

11 lines
152 B
Nix

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