nixos-config/linux/nebula/zfs.nix
2025-10-15 22:24:44 -07:00

11 lines
183 B
Nix

{pkgs, ...}: {
boot = {
loader.grub.zfsSupport = true;
zfs.package = pkgs.zfs_unstable;
};
services.zfs = {
autoScrub.enable = true;
trim.enable = true;
};
}