nixos-config/hosts/antivirus.nix

13 lines
202 B
Nix
Raw Normal View History

2024-02-10 22:49:13 +01:00
{config, lib, pkgs, ...}:
{
services.clamav = {
updater.enable = true;
updater.settings = {
LogVerbose = true;
};
updater.interval = "hourly";
daemon.enable = true;
};
}