nixos/mediawiki: drop sqlite variant

Probably no one ever tested this, mediawiki tries to create the database inside the read-only
package. There might be a proper fix but for now it's better to not advertise unsupported options.
This commit is contained in:
Jörg Thalheim 2023-11-11 15:33:19 +01:00 committed by Jörg Thalheim
parent e580ab8c3e
commit 0bd8759d1c

View File

@ -307,7 +307,7 @@ in
database = {
type = mkOption {
type = types.enum [ "mysql" "postgres" "sqlite" "mssql" "oracle" ];
type = types.enum [ "mysql" "postgres" "mssql" "oracle" ];
default = "mysql";
description = lib.mdDoc "Database engine to use. MySQL/MariaDB is the database of choice by MediaWiki developers.";
};