nixos-config/hosts/antivirus.nix

12 lines
201 B
Nix

{config, lib, pkgs, ...}:
{
services.clamav = {
updater.enable = true;
updater.settings = {
LogVerbose = true;
};
updater.interval = "hourly";
daemon.enable = true;
};
}