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

View file

@ -6,6 +6,7 @@
./x270.nix
./scanner.nix
./printer.nix
# ./clamav.nix
];
boot.loader.systemd-boot.enable = true;

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;
}