11 lines
183 B
Nix
11 lines
183 B
Nix
{pkgs, ...}: {
|
|
boot = {
|
|
loader.grub.zfsSupport = true;
|
|
zfs.package = pkgs.zfs_unstable;
|
|
};
|
|
|
|
services.zfs = {
|
|
autoScrub.enable = true;
|
|
trim.enable = true;
|
|
};
|
|
}
|