drone: add zed scrub after resilver

This commit is contained in:
wo2wz 2025-10-08 21:18:10 -04:00
parent f9ae381313
commit 5fd88175ad
2 changed files with 13 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./sops.nix ./sops.nix
./uptime-kuma.nix ./uptime-kuma.nix
./vaultwarden.nix ./vaultwarden.nix
./zed.nix
./zipline.nix ./zipline.nix
]; ];
} }

View file

@ -0,0 +1,12 @@
{ config, ... }:
{
services.zfs.zed.settings = {
ZED_SCRUB_AFTER_RESILVER = true;
# TODO seemingly impossible to pass access token to zed without exposing it in plaintext so i guess this wont do
# ZED_NOTIFY_VERBOSE = true;
# ZED_NTFY_URL = "https://ntfy.taild5f7e6.ts.net";
# ZED_NTFY_TOPIC = "ZED";
};
}