From a9a39cfe6684478e66232b5148798c873ce876ba Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 8 Jul 2023 10:42:25 -0700 Subject: add pantalaimon, a proxy for matrix This is so I can use emacs as a client for matrix. --- home/profiles/matrix.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 home/profiles/matrix.nix (limited to 'home/profiles') 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; + }; + }; + }; +} -- cgit 1.4.1