nixos-config/linux/nebula/zfs.nix

9 lines
127 B
Nix
Raw Normal View History

2024-09-22 00:44:00 -07:00
{...}: {
boot.loader.grub.zfsSupport = true;
2023-10-09 10:44:07 -07:00
services.zfs = {
autoScrub.enable = true;
trim.enable = true;
};
}