From ff9315233c28b1a0a2f7ebd445394cff25957c65 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Thu, 4 Dec 2025 15:30:57 +0100 Subject: [PATCH] fix postgres colation --- services/postgres.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/postgres.nix b/services/postgres.nix index 99a0b51..8753953 100644 --- a/services/postgres.nix +++ b/services/postgres.nix @@ -4,5 +4,9 @@ services.postgresql = { enable = true; enableJIT = true; + initdbArgs = [ + "--locale=C" + "--encoding=UTF8" + ]; }; }