summaryrefslogtreecommitdiff
path: root/services/clamav.nix
blob: c6408e9b5c412b0364298763969b933699916ce4 (plain)
1
2
3
4
5
6
7
8
9
{ config, ... }:
{
  services = {
    clamav = {
      daemon.enable = true;
      updater.enable = true;
    };
  };
}