nixos-config/hosts/antivirus.nix

14 lines
198 B
Nix
Raw Normal View History

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