From ad941e8611104b26c4660153de8ee6500477bd30 Mon Sep 17 00:00:00 2001 From: OCbwoy3 Date: Sat, 8 Nov 2025 23:50:18 +0200 Subject: [PATCH] tangled: add spindle --- flake.nix | 1 + hosts/server/configuration.nix | 2 +- hosts/server/modules/{knot.nix => tangled.nix} | 9 +++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) rename hosts/server/modules/{knot.nix => tangled.nix} (53%) diff --git a/flake.nix b/flake.nix index 982d177..db03c4b 100644 --- a/flake.nix +++ b/flake.nix @@ -67,6 +67,7 @@ modules = [ inputs.catppuccin.nixosModules.catppuccin inputs.tangled.nixosModules.knot + inputs.tangled.nixosModules.spindle inputs.vscode-server.nixosModules.default inputs.chaotic.nixosModules.nyx-cache diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index 7f9117e..5adcfa9 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -4,7 +4,7 @@ imports = [ ./modules/atproto-pds.nix ./modules/cloudflare.nix - ./modules/knot.nix + ./modules/tangled.nix ./modules/misskey.nix ../../modules/force.nix ]; diff --git a/hosts/server/modules/knot.nix b/hosts/server/modules/tangled.nix similarity index 53% rename from hosts/server/modules/knot.nix rename to hosts/server/modules/tangled.nix index 7fd118b..d93ffa2 100644 --- a/hosts/server/modules/knot.nix +++ b/hosts/server/modules/tangled.nix @@ -9,4 +9,13 @@ hostname = "knot.ocbwoy3.dev"; }; }; + + services.tangled-spindle = { + enable = true; + server = { + listenAddr = "0.0.0.0:3004"; + owner = "did:plc:s7cesz7cr6ybltaryy4meb6y"; + hostname = "spindle.ocbwoy3.dev"; + }; + }; }