From Kubernetes to Dokploy: Simplifying My Homelab

Overview Most of the posts in this series so far have been “here’s how I built X.” This one’s different. It’s about something I built, used for a while, and then mostly walked away from: a Kubernetes cluster running Talos . This isn’t a “Kubernetes is bad” post. It’s a “here’s what it was actually like to run it at home, and why I ended up somewhere simpler” post. The short version: I moved from a Talos-based Kubernetes cluster to a single Proxmox host running a mix of LXC containers and VMs, with Dokploy and Docker Compose handling application deployment. ...

July 12, 2026 · 7 min · Dominik Pall

Monorepo Sync: From Private Repo to Public Subtrees

Overview I love the convenience of a monorepo for my homelab. Having my NixOS configs, blog, and custom apps in one place makes cross-project changes trivial. However, it creates a challenge: how do I share specific projects on GitHub without exposing my entire private infrastructure? The solution I’ve landed on uses git subtree to split off specific directories into their own public repositories. In this post, I’ll show how I moved from manual syncing with a Justfile to fully automated “Sync on Push” using OneDev . ...

July 5, 2026 · 4 min · Dominik Pall

One Repo to Rule Them All: Why I Chose a Monorepo

The Debate Nobody Wins Ask ten engineers whether to use a monorepo and you will get eleven opinions. The polyrepo crowd will tell you that separate repos mean clear ownership, independent versioning, and small focused histories. The monorepo crowd will point at Google, Meta, and Microsoft and say: if it scales there, it scales anywhere. Both camps are right about something. And both camps tend to argue past the thing that actually matters: what is the right fit for your situation? ...

June 28, 2026 · 6 min · Dominik Pall

Automating NixOS Deployments with OneDev and Colmena

Overview Managing a fleet of NixOS machines can quickly become a manual chore if you’re still running nixos-rebuild switch from your local machine. In my homelab, I’ve moved towards a “hands-off” infrastructure where every change committed to the main branch of my monorepo is automatically built and deployed. This post covers how I use NixOS Flakes in platform/nixos, OneDev for CI/CD, and Colmena for the final deployment “push”. The Infrastructure Stack My setup revolves around three main components: ...

June 21, 2026 · 4 min · Dominik Pall

Obsidian to Live: Automated Blog Pipeline with OneDev

Overview Before writing anything else on this blog, it felt right to write about the blog itself. By the time you’re reading this post, it has already gone through the exact pipeline described below: written in Obsidian , pushed to a git repo, built into a static site, packaged into a container, and deployed to dpall.dev without me touching a server. The goal was simple: writing should be the only manual step. Everything after “commit” should happen on its own. ...

June 14, 2026 · 4 min · Dominik Pall