From f14c74f50f738b6d70fde6a1afb1f94c5dffa51e Mon Sep 17 00:00:00 2001 From: Hermes Date: Thu, 18 Jun 2026 21:26:14 -0400 Subject: [PATCH] feat: add ClamAV antivirus with daily auto-scan --- hosts/uconsole-cm5/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/uconsole-cm5/configuration.nix b/hosts/uconsole-cm5/configuration.nix index 7a9c78a..7fcd883 100644 --- a/hosts/uconsole-cm5/configuration.nix +++ b/hosts/uconsole-cm5/configuration.nix @@ -199,4 +199,13 @@ # Enable remote builder (distributed build via lazyworkhorse server) services.remoteBuilder.enable = true; + # ============================================================ + # ClamAV antivirus — daily automatic scans + # ============================================================ + services.clamav = { + daemon.enable = true; + updater.enable = true; + scanner.enable = true; + }; + }