nixos-config/system/zfs.nix
Christoph Heiss 27d609f956
system: zfs: add scrub notifications
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2024-01-21 00:53:42 +01:00

20 lines
480 B
Nix

{ config, my, pkgs, ... }:
{
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
boot.supportedFilesystems = [ "zfs" ];
boot.initrd.supportedFilesystems = [ "zfs" ];
environment.systemPackages = with pkgs; [ zfs ];
services.zfs = {
autoScrub.enable = true;
autoSnapshot.enable = true;
trim.enable = true;
zed.settings = {
ZED_SLACK_WEBHOOK_URL = my.notifications.zfs-bot.url;
ZED_NOTIFY_VERBOSE = 1;
};
};
}