Alex Kretzschmar

234 posts

technical

Codex is changing how I think about computers

There is no doubt we're living through a seismic change in how we interface with computers. I have spent the last 15+ years learning a craft, how to adminster and interface with Linux. But I'm starting to feel a shift in my own behaviours, which fills me with awe and simultaneously makes me deeply uncomfortable. I wanted to take a moment to share a slice of that journey with you today. Tea. Earl Grey. Hot. Picture this. Sitting on the couch with my 5yo daughter watching a new favourite show o

self-hosted

Self-Hosted 150. Fin.

Almost 6 years. 150 episodes. 34 guests. 1 Chris. 1 Badger. 1 podcast comes to an end. I thought it fitting to write this post, about the Self-Hosted podcast drawing to a conclusion, on the very self-hosted blog that began my self-hosting journey way back in August 2013. (blog.ktz.me turned into Linuxserver.io before being recreated as blog.ktz.me again at some point). Episode 150 airs on Friday May 30th, 2025 (I will update and replace this with an embed once the episode is out). And since w

linux

How to enable Intel Quicksync on NixOS with a Supermicro X13SAE-F and an Intel i5-13600k

Like most things, getting Quicksync working on NixOS with a motherboard that has IPMI and a 13th gen Intel chip is quite simple once you know how. The complexities come from ensuring users are in the right groups, and you have the correct arrangement of packages in the hardware.opengl configuration. nix-config/hosts/nixos/morphnix/default.nix at main · ironicbadger/nix-configContribute to ironicbadger/nix-config development by creating an account on GitHub.GitHubironicbadger I'll include a mi

technical

Set a static IP in Unraid from the command line

When flashing the brand new Unraid 7 to a USB stick earlier today I did something silly. I configured a static IP that conflicted with another host in the same LAN. This meant I couldn't access the Unraid UI to fix it. However, by modifying one file in the /boot directory by hand we can set a static IP easily and quickly. In Unraid land, the /boot directory is persisted on the USB stick the system boots from. To make changes to this file, open the command line interface to your Unraid system e

ansible

git submodules for fun and profit with Ansible

No matter how hard I try to fully switch over to Nix, I always seem to end up back at the altar of Ansible. This post isn't about Nix so I won't go into some of my frustrations there (yet!). This post is about my newly rekindled relationship with the old, trusty, git submodule. Git submodules effectively allow you to embed one repo inside another whilst retaining complete independence of the embedded repo. For example, it is common in Ansible to import roles from external sources. Simply add th