srx-platform-nix/modules/filesystems/zfs.nix

25 lines
510 B
Nix
Raw Permalink Normal View History

2024-07-04 13:47:18 +02:00
{ lib, config, ... }:
{
boot = {
initrd.supportedFilesystems = lib.mkDefault [ "zfs" ];
kernelPackages = lib.mkForce config.boot.zfs.package.latestCompatibleLinuxPackages;
supportedFilesystems = [ "zfs" ];
};
services = {
zfs = {
autoScrub = {
enable = true;
interval = "weekly";
};
trim = {
enable = true;
interval = "weekly";
};
};
telegraf.extraConfig.inputs.zfs = lib.mkIf config.services.telegraf.enable { };
};
}