this repo has no description
4
fork

Configure Feed

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

add ipv6 for trimounts

dawn 267f34a2 96b06468

+15 -2
-2
hosts/trimounts/default.nix
··· 28 28 pkgs.gitMinimal 29 29 ]; 30 30 31 - networking.firewall.enable = true; 32 - 33 31 system.stateVersion = "25.11"; 34 32 }
+15
hosts/trimounts/modules/networking.nix
··· 1 + { 2 + networking.enableIPv6 = true; 3 + networking.interfaces.ens3 = { 4 + ipv6.addresses = [{ 5 + address = "2a0a:4cc0:c1:e83d::b00b"; 6 + prefixLength = 64; 7 + }]; 8 + }; 9 + networking.defaultGateway6 = { 10 + address = "fe80::1"; 11 + interface = "ens3"; 12 + }; 13 + 14 + networking.firewall.enable = true; 15 + }
hosts/trimounts/modules/nsid-tracker.nix hosts/trimounts/modules/nsid-tracker.disabled