nixos-config/linux/nebula/zfs.nix

12 lines
183 B
Nix
Raw Normal View History

2025-10-15 22:24:37 -07:00
{pkgs, ...}: {
boot = {
loader.grub.zfsSupport = true;
zfs.package = pkgs.zfs_unstable;
};
2023-10-09 10:44:07 -07:00
services.zfs = {
autoScrub.enable = true;
trim.enable = true;
};
}