mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-05 08:17:01 +00:00
postgresql: add character set config
`initdb` expects to read the locale or SQL_ASCII environment variable to determine the most appropriate character set. Instead, offer a configuration option.
This commit is contained in:
parent
8d557721a9
commit
e60725bd3d
1 changed files with 8 additions and 1 deletions
|
@ -61,6 +61,13 @@ in
|
|||
description = ''Data directory for PostgreSQL.'';
|
||||
};
|
||||
|
||||
characterSet = mkOption {
|
||||
type = types.string;
|
||||
default = "UTF8";
|
||||
example = "SJIS";
|
||||
description = ''Character set specified during initialization'';
|
||||
};
|
||||
|
||||
enableTCPIP = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
|
@ -101,7 +108,7 @@ in
|
|||
script = ''
|
||||
# Initialise the database.
|
||||
if ! test -e ${cfg.dataDir}/PG_VERSION; then
|
||||
initdb -U postgres -D ${cfg.dataDir}
|
||||
initdb -U postgres -D ${cfg.dataDir} -E ${cfg.characterSet}
|
||||
fi
|
||||
${pkgs.coreutils}/bin/ln -sfn ${configFile} ${cfg.dataDir}/postgresql.conf
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue