Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set up valheim networking

+7 -5
+1 -4
host-specific/odin/networking.nix
··· 28 28 networking.firewall = { 29 29 enable = true; 30 30 allowPing = true; 31 - allowedUDPPorts = [ 32 - 2456 33 - ]; 31 + allowedUDPPorts = [ ]; 34 32 allowedUDPPortRanges = [ ]; 35 33 allowedTCPPorts = [ 36 34 2375 37 - 2456 38 35 3000 39 36 ]; 40 37 };
+6 -1
host-specific/odin/services.nix
··· 11 11 # Fish shell, the best 12 12 programs.fish.enable = true; 13 13 14 - services.tailscale.useRoutingFeatures = "client"; 14 + services.tailscale = { 15 + useRoutingFeatures = "client"; 16 + extraUpFlags = [ 17 + "--service=svc:valheim" 18 + ]; 19 + }; 15 20 16 21 services.redis.servers."" = { 17 22 enable = true;