this repo has no description
4
fork

Configure Feed

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

fix: serve root

dusk e9f8cf5a a2855299

+12 -4
+12 -4
hosts/wolumonde/modules/arpa.nix
··· 1 - {pkgs, config, ...}: { 1 + {pkgs, config, ...}: 2 + let 3 + index = pkgs.writeText "index.txt" '' 4 + meow :3c 5 + ''; 6 + root = pkgs.runCommand "root" {} '' 7 + mkdir -p $out 8 + ln -s ${index} $out/index.txt 9 + ''; 10 + in 11 + { 2 12 services.nginx.virtualHosts."9.0.0.0.8.e.f.1.5.0.7.4.0.1.0.0.2.ip6.arpa" = { 3 - locations."/".alias = toString (pkgs.writeText "index.txt" '' 4 - meow :3c 5 - ''); 13 + inherit root; 6 14 quic = true; 7 15 kTLS = true; 8 16 };