diff --git a/hosts/tatos/services/prometheus.nix b/hosts/tatos/services/prometheus.nix
index bfd98cc..73b656f 100644
--- a/hosts/tatos/services/prometheus.nix
+++ b/hosts/tatos/services/prometheus.nix
@@ -3,7 +3,6 @@
 let
   nodeExporterPort = 40000;
   nginxExporterPort = 40001;
-  postfixExporterPort = 40002;
 
   basic_auth = {
     username = "jan";
@@ -72,17 +71,6 @@ in
           }
         ];
       }
-      {
-        job_name = "sm_smtp";
-        # inherit basic_auth;
-        static_configs = [
-          {
-            targets = [
-              "sm-sd1:${toString postfixExporterPort}"
-            ];
-          }
-        ];
-      }
     ];
   };
 }