nixos-config/linux/nebula/zfs.nix

12 lines
224 B
Nix
Raw Normal View History

2024-08-14 11:14:20 -07:00
{config, ...}: {
2023-10-09 10:44:07 -07:00
boot = {
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
loader.grub.zfsSupport = true;
};
services.zfs = {
autoScrub.enable = true;
trim.enable = true;
};
}