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

10 lines
151 B
Nix

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