nixos-config/config/zfs.nix

9 lines
248 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;
services.zfs.autoScrub.pools = [ "tank" ];
services.zfs.autoSnapshot.enable = true;
}