19 lines
254 B
Nix
19 lines
254 B
Nix
{
|
|
services.zfs = {
|
|
trim.enable = true;
|
|
|
|
autoSnapshot = {
|
|
enable = true;
|
|
flags = "-k -p --utc";
|
|
|
|
monthly = 3;
|
|
};
|
|
|
|
autoScrub = {
|
|
enable = true;
|
|
interval = "monthly";
|
|
|
|
pools = [ "zroot" ];
|
|
};
|
|
};
|
|
}
|