Host clamav on port 3310
diff --git a/modules/clamav.nix b/modules/clamav.nix
index d3573e5..acaa76d 100644
--- a/modules/clamav.nix
+++ b/modules/clamav.nix
@@ -1,7 +1,10 @@
 { pkgs, ... }: {
   services.clamav = {
     updater.enable = true;
-    daemon.enable = true;
+    daemon = {
+      enable = true;
+      settings.TCPSocket = 3310;
+    };
   };
   environment.systemPackages = [ pkgs.clamav ];
 }