Add clamav module

This commit is contained in:
fruchti 2025-01-25 10:50:33 +01:00
parent b13c5aecaa
commit b9e9b29cb3
2 changed files with 10 additions and 0 deletions

9
hosts/clamav.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.clamav
];
services.clamav.daemon.enable = true;
services.clamav.updater.enable = true;
}