The code and data behind xeiaso.net
5
fork

Configure Feed

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

small thing on wireguard on the deck

Signed-off-by: Xe Iaso <me@xeiaso.net>

Xe Iaso cad61185 05e58f05

+51
+1
dhall/package.dhall
··· 90 90 ] 91 91 , contactLinks = 92 92 [ Link::{ url = "https://github.com/Xe", title = "GitHub" } 93 + , Link::{ url = "https://x.com/theprincessxena", title = "X (Twitter)" } 93 94 , Link::{ url = "https://keybase.io/xena", title = "Keybase" } 94 95 , Link::{ url = "https://www.patreon.com/cadey", title = "Patreon" } 95 96 , Link::{ url = "https://www.twitch.tv/princessxen", title = "Twitch" }
+50
lume/src/notes/2024/steam-deck-wireguard.mdx
··· 1 + --- 2 + title: The Steam Deck ships with WireGuard 3 + date: 2024-06-28 4 + desc: One less install required! 5 + --- 6 + 7 + While I was poking around SteamOS, I tried to run wg-quick and was surprised to see it was preinstalled. I've been wanting to get into my Deck from my MacBook over a stable IP for a fair bit, and this means I can just add it to my private [fly.io](https://fly.io) network. 8 + 9 + So I did that: 10 + 11 + ``` 12 + $ fly wg create personal yul mipha mipha.conf 13 + ``` 14 + 15 + And then I imported the config to my deck over normal SSH and activated it: 16 + 17 + ``` 18 + $ sudo cp mipha.conf /etc/wg-quick/fly0.conf 19 + 20 + $ sudo systemctl enable --now wg-quick@fly0.service 21 + ``` 22 + 23 + And then I can ping it as normal: 24 + 25 + ``` 26 + $ ping6 fdaa:0:641b:a7b:9285:0:a:2502 -c4 27 + PING6(56=40+8+8 bytes) [scrubbed] --> fdaa:0:641b:a7b:9285:0:a:2502 28 + 16 bytes from fdaa:0:641b:a7b:9285:0:a:2502, icmp_seq=0 hlim=62 time=35.587 ms 29 + 16 bytes from fdaa:0:641b:a7b:9285:0:a:2502, icmp_seq=1 hlim=62 time=22.683 ms 30 + 16 bytes from fdaa:0:641b:a7b:9285:0:a:2502, icmp_seq=2 hlim=62 time=29.850 ms 31 + 16 bytes from fdaa:0:641b:a7b:9285:0:a:2502, icmp_seq=3 hlim=62 time=95.205 ms 32 + 33 + --- fdaa:0:641b:a7b:9285:0:a:2502 ping6 statistics --- 34 + 4 packets transmitted, 4 packets received, 0.0% packet loss 35 + round-trip min/avg/max/std-dev = 22.683/45.831/95.205/28.870 ms 36 + ``` 37 + 38 + Et voila! I'm in. Now it's easy to copy off the videos I got with Decky Recorder. Here's a few screenshots I've copied over: 39 + 40 + <Photo path="blog/2024/steam-deck-wireguard/20231212171009_1" /> 41 + 42 + <Photo path="blog/2024/steam-deck-wireguard/20231212171009_1" /> 43 + 44 + <Photo path="blog/2024/steam-deck-wireguard/20231212171107_1" /> 45 + 46 + Hope this gives you ideas! 47 + 48 + --- 49 + 50 + This was originally a post on [X's article feature](https://x.com/theprincessxena/status/1806786540137275709), but it has been copied here in case the original is deleted, that product is cancelled, or some other bad thing happens.