diff options
Diffstat (limited to '')
-rw-r--r-- | home/profiles/matrix.nix | 18 | ||||
-rw-r--r-- | hosts/aptos/home.nix | 1 |
2 files changed, 19 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; + }; + }; + }; +} diff --git a/hosts/aptos/home.nix b/hosts/aptos/home.nix index 7df0537..e4ce2ec 100644 --- a/hosts/aptos/home.nix +++ b/hosts/aptos/home.nix @@ -3,5 +3,6 @@ "${self}/home/profiles/home.nix" "${self}/home/profiles/workstation.nix" "${self}/home/profiles/sway.nix" + "${self}/home/profiles/matrix.nix" ]; } |