clamav: init

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-02-24 21:58:41 +01:00
parent 07fa66f1b6
commit 43ae447b34
3 changed files with 14 additions and 0 deletions

12
nixos/clamav.nix Normal file
View File

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