pastila: enable zfs scrub/snapshot
This commit is contained in:
parent
26e139e21d
commit
1fe2075869
1 changed files with 16 additions and 0 deletions
|
@ -17,6 +17,22 @@ in
|
||||||
boot.loader.grub.enable = true;
|
boot.loader.grub.enable = true;
|
||||||
boot.loader.grub.device = "/dev/vda";
|
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.hostName = "pastila"; # Define your hostname.
|
||||||
networking.hostId = "8425e349";
|
networking.hostId = "8425e349";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue