8 lines
157 B
Nix
8 lines
157 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
boot = {
|
|
supportedFilesystems = [ "zfs" ];
|
|
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
};
|
|
}
|