summaryrefslogtreecommitdiff
path: root/nix/modules/home/pantalaimon.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/modules/home/pantalaimon.nix')
-rw-r--r--nix/modules/home/pantalaimon.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/nix/modules/home/pantalaimon.nix b/nix/modules/home/pantalaimon.nix
index b523865..b3a4d42 100644
--- a/nix/modules/home/pantalaimon.nix
+++ b/nix/modules/home/pantalaimon.nix
@@ -1,17 +1,19 @@
{ lib, config, ... }:
{
services.pantalaimon = {
- enable = lib.mkDefault config.monorepo.profiles.graphics.enable;
+ enable = lib.mkDefault config.monorepo.profiles.enable;
settings = {
Default = {
LogLevel = "Debug";
SSL = true;
};
+
local-matrix = {
- Homeserver = "https://matrix.${config.monorepo.vars.orgHost}";
+ Homeserver = "https://matrix.nullring.xyz";
ListenAddress = "127.0.0.1";
- ListenPort = "8008";
+ ListenPort = 8008;
};
};
+
};
}