nix machine / user configurations
4
fork

Configure Feed

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

refactor(wolumonde): atp stuff

ptr.pet dace81e0 d0ddf902

verified
+22 -14
+1
dns/dnsconfig.js
··· 23 23 A("likes", WOLUMONDE_IP, CF_PROXY_OFF), 24 24 A("vpn", WOLUMONDE_IP, CF_PROXY_OFF), 25 25 A("id", WOLUMONDE_IP, CF_PROXY_OFF), 26 + // A("meow", WOLUMONDE_IP, CF_PROXY_OFF), 26 27 // thing 27 28 // TXT("id", "a data endpoint for entity with serial id /90008/."), 28 29 // TXT("id", "entity linked here uses it/they pronouns. it can be referred to as /dusk/ or /dawn/."),
+7
hosts/wolumonde/modules/atproto.nix
··· 34 34 { 35 35 security.acme.certs."gaze.systems".extraDomainNames = [ 36 36 dawnDid guestbookDid 37 + # "meow.gaze.systems" 37 38 ]; 38 39 services.nginx.virtualHosts = { 39 40 # "gaze.systems" = mkWellKnownCfg { ··· 44 45 }; 45 46 # "9.0.0.0.8.e.f.1.5.0.7.4.0.1.0.0.2.ip6.arpa" = mkWellKnownCfg { 46 47 # "atproto-did" = pkgs.writeText "server" "did:plc:dfl62fgb7wtjj3fcbb72naae"; 48 + # }; 49 + # "meow.gaze.systems" = { 50 + # useACMEHost = "gaze.systems"; 51 + # quic = true; 52 + # kTLS = true; 53 + # forceSSL = true; 47 54 # }; 48 55 } 49 56 // (mkDidWebCfg dawnDid)
+14 -14
hosts/wolumonde/modules/blog.nix
··· 43 43 }; 44 44 }; 45 45 46 - systemd.services.annoy-keep-alive = { 47 - description = "keeps annoy peer connection alive"; 48 - wantedBy = [ "multi-user.target" ]; 49 - after = [ "network.target" ]; 50 - serviceConfig = { 51 - Type = "oneshot"; 52 - ExecStart = "${pkgs.curl}/bin/curl http://100.64.0.1:3111/"; 53 - }; 54 - }; 55 - systemd.timers.annoy-keep-alive.timerConfig = { 56 - OnBootSec = "5 min"; 57 - OnUnitActiveSec = "5 min"; 58 - Unit = "annoy-keep-alive.service"; 59 - }; 46 + # systemd.services.annoy-keep-alive = { 47 + # description = "keeps annoy peer connection alive"; 48 + # wantedBy = [ "multi-user.target" ]; 49 + # after = [ "network.target" ]; 50 + # serviceConfig = { 51 + # Type = "oneshot"; 52 + # ExecStart = "${pkgs.curl}/bin/curl http://100.64.0.1:3111/"; 53 + # }; 54 + # }; 55 + # systemd.timers.annoy-keep-alive.timerConfig = { 56 + # OnBootSec = "5 min"; 57 + # OnUnitActiveSec = "5 min"; 58 + # Unit = "annoy-keep-alive.service"; 59 + # }; 60 60 61 61 services.nginx.virtualHosts."gaze.systems" = { 62 62 locations."/".proxyPass = "http://localhost:${toString port}";