blob: 9371ff2af67f1ee48095711cf0705714cc5b9b9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
const nasServices = [
"Jellyfin: Media library",
"Kavita: Ebooks and manga",
"AdGuard Home: Ad blocking",
"Nginx: Reverse proxy",
"Ollama: Enough for small LLM testing",
];
export default function HomelabPage() {
return (
<>
<title>߸ homelab</title>
<h1>Home lab</h1>
<section className="mb-12">
<h2>NAS</h2>
<img src="/images/nas.webp" alt="NAS" className="mx-auto mb-4 w-64 rounded-lg shadow" />
<p className="mb-4 leading-relaxed">
My custom-built NAS running <strong>Unraid</strong> hosts the following services. See <a href='/gear'>gear</a> for specs.
</p>
<ul className="list-disc pl-6 space-y-1">
{nasServices.map((svc) => (
<li key={svc}>{svc}</li>
))}
</ul>
<p className="mb-4 leading-relaxed">
For remote access, I connect to the machine via VPN. I back up my MacBook to that machine with Time Machine, and I back up my desktop and VPS to it using rsync.
</p>
</section>
<section className="mb-12">
<h2>Raspberry Pi</h2>
<img src="/images/pi.webp" alt="Raspberry Pi 5" className="mx-auto mb-4 w-64 rounded-lg shadow" />
<p className="mb-4 leading-relaxed">
Raspberry Pi 5 (8GB) running <a href='https://homebridge.io'>Homebridge</a> to integrate non-HomeKit devices. It also serves as a precision NTP server using a <a href='https://store.uputronics.com/products/raspberry-pi-gps-rtc-expansion-board' target='_blank'>Uputronics GPS module</a>.
</p>
</section>
<section>
<h2>VPS</h2>
<p className="mb-4 leading-relaxed">
Cheap Ionos VPS running nixos via <a href='https://github.com/elitak/nixos-infect'>nixos-infect</a> for services exposed to the internet. Mainly using it for hosting this website and <a href='https://nextcloud.com'>Nextcloud</a>.
</p>
</section>
</>
);
}
|