nixos-config/linux/nebula/zfs.nix

16 lines
260 B
Nix
Raw Normal View History

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