Clamav: Difference between revisions

From NixOS Wiki
Johanno (talk | contribs)
I created a short info on how to install clamav since it isn't documented anywhere else.
 
Klinger (talk | contribs)
 
Line 9: Line 9:
services.clamav.updater.enable = true;
services.clamav.updater.enable = true;
</syntaxhighlight>
</syntaxhighlight>
[[Category:Applications]]

Latest revision as of 11:15, 24 December 2024

Clamav is an antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats.

In order to install it:

environment.systemPackages = [
  pkgs.clamav
];
services.clamav.daemon.enable = true;

services.clamav.updater.enable = true;