mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 14:20:33 +01:00
12 lines
201 B
Nix
12 lines
201 B
Nix
{config, lib, pkgs, ...}:
|
|
{
|
|
services.clamav = {
|
|
updater.enable = true;
|
|
updater.settings = {
|
|
LogVerbose = true;
|
|
};
|
|
updater.interval = "hourly";
|
|
daemon.enable = true;
|
|
};
|
|
}
|