13 lines
151 B
Nix
13 lines
151 B
Nix
|
{
|
||
|
services.zfs = {
|
||
|
trim.enable = true;
|
||
|
|
||
|
autoSnapshot = {
|
||
|
enable = true;
|
||
|
flags = "-k -p --utc";
|
||
|
|
||
|
monthly = 3;
|
||
|
};
|
||
|
};
|
||
|
}
|