From 343d99e8a9886ff47b39bfb7d426059cf50d20d3 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Thu, 25 Dec 2025 18:04:49 +0000 Subject: [PATCH] shnosh --- hosts/mindy/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/mindy/default.nix b/hosts/mindy/default.nix index 8e518c1..2e8edc9 100644 --- a/hosts/mindy/default.nix +++ b/hosts/mindy/default.nix @@ -53,4 +53,14 @@ }; networking.hostName = hostname; + + services.postgresql = { + ensureDatabases = ["shnosh"]; + ensureUsers = [ + { + name = "shnosh"; + ensureDBOwnership = true; + } + ]; + }; }