summaryrefslogtreecommitdiff
path: root/modules/services/postgresql
AgeCommit message (Collapse)Author
2024-10-13Merge pull request #794 from fesplugas/patch-1Michael Hoang
fix: postgresql service initdb
2024-04-19treewide: remove lib.mdDocWeijia Wang
2023-11-23fix: initdb missing data area directoryFrancesc Esplugas
Use `PGDATA` environment variable instead of `-D` to maintain consistency with NixOS module. Co-Authored-By: Michael Hoang <enzime@users.noreply.github.com>
2023-06-24treewide: convert all option docs to MarkdownEmily
This process was automated by [my fork of `nix-doc-munge`]; thanks to @pennae for writing this tool! It automatically checks that the resulting documentation doesn't change, although my fork loosens this a little to ignore some irrelevant whitespace and typographical differences. As of this commit there is no DocBook remaining in the options documentation. You can play along at home if you want to reproduce this commit: $ NIX_PATH=nixpkgs=flake:nixpkgs/c1bca7fe84c646cfd4ebf3482c0e6317a0b13f22 \ nix shell nixpkgs#coreutils \ -c find . -name '*.nix' \ -exec nix run github:emilazy/nix-doc-munge/0a7190f600027bf7baf6cb7139e4d69ac2f51062 \ {} + [my fork of `nix-doc-munge`]: https://github.com/emilazy/nix-doc-munge
2023-06-24treewide: tweak DocBook docs for conversionEmily
These help `nix-munge-doc` automate more of the Markdown conversion process. See the following nixpkgs commits for explanations of many of these changes: * https://github.com/NixOS/nixpkgs/commit/275a34e0d8a937a81b267e47302dd8a92fa781df * https://github.com/NixOS/nixpkgs/commit/694d5b19d30bf66687b42fb77f43ea7cd1002a62 * https://github.com/NixOS/nixpkgs/commit/f1d39b6d6187997b630647400c5efe5b01e06a23 * https://github.com/NixOS/nixpkgs/commit/16102dce2fbad670bd47dd75c860a8daa5fe47ad I couldn't think of any particularly good way to format the `system.defaults` breadcrumbs, so I just made them standalone paragraphs. They weren't rendering correctly in DocBook anyway.
2022-11-10services/postgresql: update to the latest upstream nixos moduleJade Lovelace
I want a newish postgres config to work on my Mac. This contains a little hack (putting the check-config derivation into the start script as a comment) to deal with not having #356. It's otherwise identical to the upstream module.
2021-10-23add forward compatibility for literalExample deprecationDaiderd Jordan
Fixes #367
2019-08-31modules: remove usages of types.stringMario Rodas
2019-05-29postgresql: add character set configKevin Griffin
`initdb` expects to read the locale or SQL_ASCII environment variable to determine the most appropriate character set. Instead, offer a configuration option.
2019-03-30Merge pull request #135 from marsam/feature/postgresql-pluginsDaiderd Jordan
postgresql: Add support for extraPlugins
2019-03-29postgresql: Use core `ln` from coreutilsMario Rodas
Otherwise it fallbacks to /bin/ln which is outdated and might not work.
2019-03-25postgresql: Add support for extraPluginsMario Rodas
2017-07-02postgresql: init serviceDaiderd Jordan