From 25ce4955993774dfe0609c1118eed3d4857aeb9f Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Thu, 6 Mar 2025 13:07:03 +0100 Subject: [PATCH] Use `pantalaimon` --- hmModules/pantalaimon/default.nix | 18 ++++++++++++++++-- hosts/default.nix | 1 + hosts/picard/default.nix | 1 + 3 files changed, 18 insertions(+), 2 deletions(-) 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 = [ ];