nixos-config/config/zfs.nix

9 lines
250 B
Nix
Raw Normal View History

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