blob: 85e5ad031238dd6b42e37fc5d46af983da56d1ee (
plain)
1
2
3
4
5
6
7
|
{ config, pkgs, ... } : {
config.boot = {
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
supportedFilesystems = [ "zfs" ];
zfs.enableUnstable = true;
};
}
|