nixos-config/linux/nebula/zfs.nix

17 lines
230 B
Nix
Raw Normal View History

2024-02-26 21:06:48 -08: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;
};
}