pastila: enable zfs scrub/snapshot

This commit is contained in:
root 2024-05-31 11:27:48 +02:00
parent 26e139e21d
commit 1fe2075869

View file

@ -17,6 +17,22 @@ in
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
# use the latest kernel compatible with zfs
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
# setup automatic snapshots (~short term: retain no more than 1 month)
services.zfs.autoSnapshot = {
enable = true;
frequent = 0;
monthly = 0;
};
# automatic scrub, 10th of each month at 3AM
services.zfs.autoScrub = {
enable = true;
interval = "*-*-10 03:00:00";
};
networking.hostName = "pastila"; # Define your hostname.
networking.hostId = "8425e349";