boxen/bits/zfs.nix

18 lines
276 B
Nix

{ configs, pkgs, lib, ... }:
{
boot.supportedFilesystems = [ "zfs" ];
services.zfs = {
trim.enable = true;
autoSnapshot = {
enable = true;
flags = "-k -p --utc";
};
autoScrub = {
enable = true;
interval = "monthly";
};
};
}