Prevent postgres automatically starting
diff --git a/modules/postgres.nix b/modules/postgres.nix
index 29f9e44..5be964f 100644
--- a/modules/postgres.nix
+++ b/modules/postgres.nix
@@ -16,6 +16,7 @@
         initialPasswordFile = config.sops.secrets.pgadminPassword.path;
       };
     };
+    systemd.services.pgadmin.wantedBy = lib.mkForce [];
     sops.secrets.pgadminPassword = {
       mode = "0400";
       owner = config.users.users.pgadmin.name;