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"; + }; + }; }