Clamav: Difference between revisions
Appearance
Use current channel for search.nixos.org link Tags: Mobile edit Mobile web edit Advanced mobile edit |
|||
Line 1: | Line 1: | ||
[https://search.nixos.org/packages? | [https://search.nixos.org/packages?show=clamav&type=packages Clamav] is an antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats. | ||
In order to install it:<syntaxhighlight lang="nix" line="1"> | In order to install it:<syntaxhighlight lang="nix" line="1"> |
Latest revision as of 16:27, 7 May 2025
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;