From e4a43291007b52f53be7337553a992d98d8b74b8 Mon Sep 17 00:00:00 2001 From: OCbwoy3 Date: Fri, 26 Dec 2025 17:29:42 +0200 Subject: [PATCH] nix: remove spacebar --- hosts/server/configuration.nix | 3 --- hosts/server/modules/spacebar.nix | 31 ------------------------------- 2 files changed, 34 deletions(-) delete mode 100644 hosts/server/modules/spacebar.nix diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index ba11187..e76871f 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -12,9 +12,6 @@ ./modules/tangled.nix ../../modules/force.nix ./modules/gitea.nix - - # DO NOT ENABLE SPACEBAR YET - # ./modules/spacebar.nix ]; # gcc. shit breaks. wtf diff --git a/hosts/server/modules/spacebar.nix b/hosts/server/modules/spacebar.nix deleted file mode 100644 index 204f69a..0000000 --- a/hosts/server/modules/spacebar.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - config, - lib, - pkgs, - inputs, - ... -}: - -{ - imports = [ inputs.spacebar.nixosModules.default ]; - - services.spacebarchat-server = { - enable = true; - package = inputs.spacebar.packages.${pkgs.stdenv.hostPlatform.system}.default; - extraEnvironment.PORT = 4067; - settings = { - api = { - endpointPublic = "https://chat.ocbwoy3.dev/api/v9"; - endpointPrivate = "http://127.0.0.1:4067/api/v9"; - }; - cdn = { - endpointPublic = "https://chat.ocbwoy3.dev/"; - endpointPrivate = "http://127.0.0.1:4067/"; - }; - gateway = { - endpointPublic = "wss://chat.ocbwoy3.dev/"; - endpointPrivate = "ws://127.0.0.1:4067/"; - }; - }; - }; -}