nix/hosts/marvin/services/zfs.nix

9 lines
145 B
Nix
Raw Normal View History

2022-07-12 11:42:47 +00:00
{
services.zfs = {
trim.enable = true;
autoScrub.enable = true;
2022-07-16 02:05:23 +00:00
autoScrub.pools = ["tank"];
2022-07-12 11:42:47 +00:00
autoSnapshot.enable = true;
};
}