aboutsummaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-07-08 10:42:25 -0700
committerFranck Cuny <franck@fcuny.net>2023-07-08 10:42:25 -0700
commita9a39cfe6684478e66232b5148798c873ce876ba (patch)
tree52ec3cb883d5dd56c7053da32e4a4534e32d7191 /home
parentupdate settings for nixos 23.05 (diff)
downloadinfra-a9a39cfe6684478e66232b5148798c873ce876ba.tar.gz
add pantalaimon, a proxy for matrix
This is so I can use emacs as a client for matrix.
Diffstat (limited to 'home')
-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;
+ };
+ };
+ };
+}