From 5fe580fd52d43c7f7a5f2c41a96523f365826ba8 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 22 Oct 2024 11:51:55 -0400 Subject: [PATCH] Infini-DL360/postgresql: fix typo in group name --- hosts/Infini-DL360/postgresql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/Infini-DL360/postgresql.nix b/hosts/Infini-DL360/postgresql.nix index 702987b..bbd0051 100644 --- a/hosts/Infini-DL360/postgresql.nix +++ b/hosts/Infini-DL360/postgresql.nix @@ -4,7 +4,7 @@ let directory = "/srv/postgresql"; in { - persist.directories = [{ inherit directory; user = "postgres"; group = "postgresl"; }]; + persist.directories = [{ inherit directory; user = "postgres"; group = "postgres"; }]; services.postgresql = { enable = true;