summaryrefslogtreecommitdiff
path: root/nix/modules/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/pantalaimon.nix
parent004d30ad75da83075ce0fae01f41f5205302e7da (diff)
add nice keybindings and options for hyprland; start of rpi-zero
Diffstat (limited to 'nix/modules/pantalaimon.nix')
-rw-r--r--nix/modules/pantalaimon.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/nix/modules/pantalaimon.nix b/nix/modules/pantalaimon.nix
new file mode 100644
index 0000000..e82e50f
--- /dev/null
+++ b/nix/modules/pantalaimon.nix
@@ -0,0 +1,13 @@
+{ lib, config, ... }:
+{
+ services.pantalaimon-headless = {
+ instances = {
+ "nullring" = {
+ ssl = true;
+ homeserver = "https://matrix.nullring.xyz";
+ listenAddress = "localhost";
+ listenPort = 8009;
+ };
+ };
+ };
+}