Jump to content

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.
(No difference)

Revision as of 18:55, 22 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;