From 7d3a7f49e845e7c7323972def4e870cc37168974 Mon Sep 17 00:00:00 2001 From: noe Date: Sat, 30 Dec 2023 17:40:22 -0500 Subject: [PATCH] happystaticbuzz: add gts --- nixos/hosts/happystaticbuzz/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/happystaticbuzz/default.nix b/nixos/hosts/happystaticbuzz/default.nix index e7e7615..173e93c 100644 --- a/nixos/hosts/happystaticbuzz/default.nix +++ b/nixos/hosts/happystaticbuzz/default.nix @@ -9,7 +9,14 @@ system.stateVersion = "24.05"; nixpkgs.hostPlatform = "x86_64-linux"; - networking.firewall.allowedTCPPorts = [ ]; + networking.firewall.allowedTCPPorts = [ 8080 ]; - + services.gotosocial = { + enable = true; + settings = { + application-name = "happy static buzzing"; + bind-address = "::"; + host = "happ.ystatic.buzz"; + }; + }; }