about summary refs log tree commit diff
path: root/home/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'home/profiles')
-rw-r--r--home/profiles/matrix.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/home/profiles/matrix.nix b/home/profiles/matrix.nix
new file mode 100644
index 0000000..bf85482
--- /dev/null
+++ b/home/profiles/matrix.nix
@@ -0,0 +1,18 @@
+{ config, lib, pkgs, ... }: {
+  services.pantalaimon = {
+    enable = true;
+    settings = {
+      Default = {
+        LogLevel = "Debug";
+        SSL = true;
+      };
+      local-matrix = {
+        Homeserver = "https://matrix.kifla.be";
+        ListenAddress = "localhost";
+        ListenPort = 8009;
+        IgnoreVerification = false;
+        UseKeyring = false;
+      };
+    };
+  };
+}