this repo has no description
4
fork

Configure Feed

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

yea

dawn d16e6d77 431afdfe

+106 -35
+14 -6
dns/dnsconfig.js
··· 67 67 CF_PROXY_OFF, 68 68 ), 69 69 DZWONEK("vpn", CF_PROXY_OFF), 70 - VOLSINII(["plc", "hydrant"], CF_PROXY_OFF), 70 + VOLSINII(["plc", "hydrant", "relay"], CF_PROXY_OFF), 71 71 // github pages 72 72 CNAME("dev", "90-008.github.io."), 73 73 // fastmail ··· 94 94 ); 95 95 96 96 D( 97 - "9.0.0.0.8.e.f.1.5.0.7.4.0.1.0.0.2.ip6.arpa", 97 + "klbr.net", 98 98 REG_NONE, 99 - DnsProvider(DSP_CLOUDFLARE), 100 - TRIMOUNTS("@", CF_PROXY_ON), 99 + DnsProvider(DSP_PRIMARY), 100 + TRIMOUNTS("@"), 101 101 TXT("@", "a data endpoint for entity with serial id /90008/."), 102 102 TXT( 103 103 "@", 104 - "entity linked here uses it/that pronouns. it can also be referred to as /dawn/.", 104 + "entity linked here uses it/she pronouns. it can also be referred to as /dawn/.", 105 105 ), 106 106 TXT( 107 107 "@", ··· 109 109 ), 110 110 TXT( 111 111 "@", 112 - "try connecting to https://gaze.systems/about for more information.", 112 + "try connecting to https://ptr.pet/about for more information.", 113 113 ), 114 + // fastmail 115 + CNAME("fm1._domainkey", "fm1.klbr.net.dkim.fmhosted.com."), 116 + CNAME("fm2._domainkey", "fm2.klbr.net.dkim.fmhosted.com."), 117 + CNAME("fm3._domainkey", "fm3.klbr.net.dkim.fmhosted.com."), 118 + MX("@", 10, "in1-smtp.messagingengine.com."), 119 + MX("@", 20, "in2-smtp.messagingengine.com."), 120 + TXT("@", "v=spf1 include:spf.messagingengine.com ?all"), 121 + TXT("_dmarc", "v=DMARC1; p=reject;"), 114 122 IGNORE_ACME(), 115 123 ); 116 124
+32
hosts/chernobog/modules/llm.nix
··· 1 + {pkgs, ...}: 2 + let 3 + llama = (pkgs.llama-cpp.overrideAttrs (prev: { 4 + cmakeFlags = prev.cmakeFlags ++ [ "-DAMDGPU_TARGETS=gfx1102" ]; # rx 7600 xt 5 + })).override { 6 + rocmSupport = true; 7 + cudaSupport = false; 8 + openclSupport = false; 9 + vulkanSupport = false; 10 + }; 11 + in { 12 + # services.ollama = { 13 + # enable = true; 14 + # package = pkgs.ollama-rocm; 15 + # rocmOverrideGfx = "11.0.0"; 16 + # }; 17 + 18 + services.llama-cpp = { 19 + enable = false; 20 + package = llama; 21 + model = "/home/mayer/models/glm-4.7-flash-q3km"; 22 + host = "127.0.0.1"; 23 + port = 1919; 24 + extraFlags = [ 25 + "-ngl" "99" # offload all layers to GPU 26 + "-c" "32768" # context size 27 + "--jinja" # needed for GLM chat template 28 + ]; 29 + }; 30 + 31 + environment.systemPackages = [llama]; 32 + }
-28
hosts/trimounts/modules/arpa.nix
··· 1 - { pkgs, ... }: 2 - let 3 - index = pkgs.writeText "index.txt" '' 4 - hi there~ 5 - 6 - you are currently interfacing with one of the data endpoints 7 - of entity with serial id /90008/. you may want to open a 8 - connection to https://gaze.systems/about for more data. 9 - 10 - /discord 90.008/ 11 - /bsky @ptr.pet/ 12 - /email 90008@gaze.systems/ 13 - 14 - /dig +short TXT 9.0.0.0.8.e.f.1.5.0.7.4.0.1.0.0.2.ip6.arpa/ 15 - ''; 16 - root = pkgs.runCommand "root" { } '' 17 - mkdir -p $out 18 - ln -s ${index} $out/index.txt 19 - ''; 20 - in 21 - { 22 - services.nginx.virtualHosts."9.0.0.0.8.e.f.1.5.0.7.4.0.1.0.0.2.ip6.arpa" = { 23 - inherit root; 24 - locations."/".index = "index.txt"; 25 - quic = true; 26 - kTLS = true; 27 - }; 28 - }
+26
hosts/trimounts/modules/klbr.nix
··· 1 + { pkgs, ... }: 2 + let 3 + index = pkgs.writeText "index.txt" '' 4 + hi there~ 5 + 6 + you are currently interfacing with one of the data 7 + endpoints of entity with serial id /90008/. you can 8 + open a connection to https://ptr.pet/about for more. 9 + 10 + /discord 90.008/ 11 + /bsky @ptr.pet/ 12 + /email 90008@klbr.net/ 13 + 14 + /dig +short TXT klbr.net/ 15 + ''; 16 + root = pkgs.runCommand "root" { } '' 17 + mkdir -p $out 18 + ln -s ${index} $out/index.txt 19 + ''; 20 + in 21 + { 22 + services.nginx.virtualHosts."klbr.net" = { 23 + inherit root; 24 + locations."/".index = "index.txt"; 25 + }; 26 + }
+7
hosts/trimounts/modules/nginx.nix
··· 48 48 certs."poor.dog" = { }; 49 49 certs."ptr.pet" = { }; 50 50 certs."gaze.systems" = { }; 51 + certs."klbr.net" = { }; 51 52 }; 52 53 services.nginx.virtualHosts."gaze.systems" = { 53 54 quic = true; ··· 65 66 quic = true; 66 67 kTLS = true; 67 68 useACMEHost = "ptr.pet"; 69 + forceSSL = true; 70 + }; 71 + services.nginx.virtualHosts."klbr.net" = { 72 + quic = true; 73 + kTLS = true; 74 + useACMEHost = "klbr.net"; 68 75 forceSSL = true; 69 76 }; 70 77
+5
hosts/volsinii/default.nix
··· 30 30 31 31 networking.firewall.enable = true; 32 32 33 + security.pam.loginLimits = [ 34 + { domain = "*"; type = "soft"; item = "nofile"; value = "1048576"; } 35 + { domain = "*"; type = "hard"; item = "nofile"; value = "1048576"; } 36 + ]; 37 + 33 38 system.stateVersion = "25.05"; 34 39 }
+14 -1
hosts/volsinii/modules/nginx.nix
··· 46 46 email = (import "${inputs.self}/personal.nix").emails.primary; 47 47 webroot = "/var/lib/acme/acme-challenge"; 48 48 }; 49 - certs."plc.gaze.systems" = { }; 49 + certs."plc.gaze.systems" = { 50 + extraDomainNames = ["relay.gaze.systems"]; 51 + }; 50 52 }; 51 53 52 54 services.nginx.virtualHosts."plc.gaze.systems" = { ··· 70 72 ExecStart = "/root/allegedly2/target/release/allegedly mirror --wrap-fjall /root/plc3"; 71 73 Restart = "on-failure"; 72 74 RestartSec = "5s"; 75 + }; 76 + }; 77 + 78 + services.nginx.virtualHosts."relay.gaze.systems" = { 79 + useACMEHost = "plc.gaze.systems"; 80 + forceSSL = true; 81 + quic = true; 82 + kTLS = true; 83 + locations."/xrpc/" = { 84 + proxyPass = "http://localhost:3000/xrpc/"; 85 + proxyWebsockets = true; 73 86 }; 74 87 }; 75 88 }
+8
users/mayer/default.nix
··· 191 191 }; 192 192 193 193 fonts.fontconfig.enable = l.mkForce true; 194 + 195 + programs.ssh.extraConfig = '' 196 + Host nixos-shell 197 + Hostname localhost 198 + Port 2222 199 + User git 200 + IdentityFile ~/.ssh/tangled-dev 201 + ''; 194 202 }; 195 203 }