keysmash!
This commit is contained in:
parent
ae1f8fc1b4
commit
eb9f54edf5
3 changed files with 32 additions and 20 deletions
1
nixos/hosts/keysmash/.target
Normal file
1
nixos/hosts/keysmash/.target
Normal file
|
@ -0,0 +1 @@
|
|||
192.168.1.188
|
24
nixos/hosts/keysmash/default.nix
Normal file
24
nixos/hosts/keysmash/default.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue