17 lines
261 B
Nix
17 lines
261 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
|
|
boot = {
|
|
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
loader.grub.zfsSupport = true;
|
|
zfs.enableUnstable = true;
|
|
};
|
|
|
|
services.zfs = {
|
|
autoScrub.enable = true;
|
|
trim.enable = true;
|
|
};
|
|
|
|
}
|
|
|