From 4ce204d46f41177cb4d715262c1cd84a52a73658 Mon Sep 17 00:00:00 2001 From: naps62 Date: Mon, 17 Aug 2026 12:15:06 +0000 Subject: [PATCH] chore: drop postgresql from yolo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nothing connects to it — every database here runs in a container. Co-Authored-By: Claude Opus 5 --- hosts/yolo/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/hosts/yolo/default.nix b/hosts/yolo/default.nix index 2f68049..202b04d 100644 --- a/hosts/yolo/default.nix +++ b/hosts/yolo/default.nix @@ -82,10 +82,4 @@ ]; }; - # Pinned to 16 to match the cluster being migrated off Ubuntu; restoring that - # dump into a newer default would need a pg_upgrade first. - services.postgresql = { - enable = true; - package = pkgs.postgresql_16; - }; }