diff --git a/hmModules/pantalaimon/default.nix b/hmModules/pantalaimon/default.nix
index 2c0a520..a6f2b8b 100644
--- a/hmModules/pantalaimon/default.nix
+++ b/hmModules/pantalaimon/default.nix
@@ -1,13 +1,27 @@
+{ pkgs, lib, ... }:
 {
   services.pantalaimon = {
     enable = true;
+    package = pkgs.pantalaimon.overrideAttrs {
+      pytestCheckPhase = "echo skip pytest";
+    };
     settings = {
+      Default = {
+        LogLevel = "Debug";
+        SSL = true;
+      };
       local-matrix = {
-        Homeserver = "https://nixos.dev";
-        ListenAddress = "127.0.0.1";
+        Homeserver = "https://matrix.aciceri.dev";
+        # Homeserver = "https://matrix.nixos.dev/_matrix/client";
+        # Homeserver = "https://matrix.nixos.dev";
+        ListenAddress = "localhost";
         ListenPort = 8008;
+        # SSL = false;
+        UseKeyring = false;
+        # IgnoreVerification = true;
       };
     };
   };
+
   systemd.user.services.pantalaimon.Unit.Requires = [ "dbus.socket" ];
 }
diff --git a/hosts/default.nix b/hosts/default.nix
index b9d2db1..c17d45f 100644
--- a/hosts/default.nix
+++ b/hosts/default.nix
@@ -117,6 +117,7 @@
             group = "forgejo";
           };
           "firefly-app-key".owner = "firefly-iii";
+          "matrix-registration-shared-secret".owner = "matrix-synapse";
         };
       };
 
diff --git a/hosts/picard/default.nix b/hosts/picard/default.nix
index 50aa7a4..be6c8b7 100644
--- a/hosts/picard/default.nix
+++ b/hosts/picard/default.nix
@@ -95,6 +95,7 @@
       "discord"
       "ib-tws"
       "zoom"
+      "pantalaimon"
     ];
     extraGroups = [ "plugdev" ];
     backupPaths = [ ];