1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

nixos/shiori: fix databaseUrl example

This commit is contained in:
Jörg Thalheim 2024-06-30 13:41:06 +02:00
parent 3ac2687c48
commit d6cf181343

View file

@ -44,7 +44,7 @@ in {
databaseUrl = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "postgresql:///shiori?host=/run/postgresql";
example = "postgres:///shiori?host=/run/postgresql";
description = "The connection URL to connect to MySQL or PostgreSQL";
};
};