keysmash!

This commit is contained in:
41666 2024-01-06 16:15:50 -05:00
parent ae1f8fc1b4
commit eb9f54edf5
3 changed files with 32 additions and 20 deletions

View file

@ -0,0 +1 @@
192.168.1.188

View file

@ -0,0 +1,24 @@
{ ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
];
networking.hostName = "keysmash";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
networking.firewall.allowedTCPPorts = [ 8080 ];
services.gotosocial = {
enable = true;
settings = {
application-name = "keysmash";
bind-address = "0.0.0.0";
host = "keysmash.xn--q9jyb4c";
account-registration-open = false;
trusted-proxies = [ "100.0.0.0/8" ];
};
};
}