Nixfiles! :3
0

Configure Feed

Select the types of activity you want to include in your feed.

Also the Matrix instance!


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (Jul 12, 2026, 2:12 AM +0200) 297930b7 2ea8d5f1

+36
+36
home/host-specific/Cubchoo.nix
··· 333 333 ]; 334 334 }; 335 335 336 + # Matrix ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 337 + services.podman.containers.matrix-main = { 338 + autoStart = true; 339 + networkAlias = [ 340 + "matrix" 341 + "synapse" 342 + ]; 343 + network = "server-net"; 344 + # ports = [ "8008:8008" ]; 345 + image = "matrixdotorg/synapse:latest"; 346 + environment = { 347 + SYNAPSE_CONFIG_PATH = "SYNAPSE_CONFIG_PATH=/data/homeserver.yaml"; 348 + }; 349 + volumes = [ 350 + "${config.home.homeDirectory}/services/data/matrix/synapse:/data:Z" 351 + ]; 352 + }; 353 + services.podman.containers.matrix-whatsapp = { 354 + autoStart = true; 355 + networkAlias = [ "mautrix-whatsapp" ]; 356 + network = "server-net"; 357 + image = "dock.mau.dev/mautrix/whatsapp:latest"; 358 + volumes = [ 359 + "${config.home.homeDirectory}/services/data/matrix/whatsapp:/data:Z" 360 + ]; 361 + }; 362 + services.podman.containers.matrix-signal = { 363 + autoStart = true; 364 + networkAlias = [ "mautrix-signal" ]; 365 + network = "server-net"; 366 + image = "dock.mau.dev/mautrix/signal:latest"; 367 + volumes = [ 368 + "${config.home.homeDirectory}/services/data/matrix/signal:/data:Z" 369 + ]; 370 + }; 371 + 336 372 # Backups ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 337 373 systemd.user.services.services-backups = { 338 374 Unit.Description = "Backups";