summaryrefslogtreecommitdiff
path: root/nix/modules/home/pantalaimon.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-01 15:05:36 -0800
committerPreston Pan <ret2pop@nullring.xyz>2026-03-01 15:05:36 -0800
commitc46325d82f3a325021811f1be844ba24b0ee5688 (patch)
treecf2824f076c0023c736b26887cd55fe2d93ef0bf /nix/modules/home/pantalaimon.nix
parent004d30ad75da83075ce0fae01f41f5205302e7da (diff)
add nice keybindings and options for hyprland; start of rpi-zero
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;
};
};
+
};
}