From c3ce64b13a18825ef34d51eca1b5b244e245bd26 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 22 Oct 2024 11:59:09 +0300 Subject: [PATCH] nixos/wakapi: fix typo in warning conditional This makes the warning work as intended again. --- nixos/modules/services/web-apps/wakapi.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/wakapi.nix b/nixos/modules/services/web-apps/wakapi.nix index ab322cad7aed..522c815e3ae3 100644 --- a/nixos/modules/services/web-apps/wakapi.nix +++ b/nixos/modules/services/web-apps/wakapi.nix @@ -196,7 +196,7 @@ in ]; warnings = [ - (lib.optionalString (cfg.db.createLocall -> cfg.db.dialect != "postgres") '' + (lib.optionalString (cfg.db.createLocally -> cfg.db.dialect != "postgres") '' You have enabled automatic database configuration, but the database dialect is not set to "posgres". The Wakapi module only supports for PostgreSQL. Please set `services.wakapi.database.createLocally`