nixos-config/config/zfs.nix

9 lines
260 B
Nix
Raw Normal View History

2022-01-14 09:19:01 +00:00
{ ... }: {
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.devNodes = "/dev/";
services.zfs.trim.enable = true;
services.zfs.autoScrub.enable = true;
2022-04-12 07:47:15 +00:00
services.zfs.autoScrub.pools = [ "tank" "ssd" "hdd" ];
2022-01-14 09:19:01 +00:00
services.zfs.autoSnapshot.enable = true;
}