Antoine Martin
c087caf46e
Followed https://nixos.org/manual/nixos/stable/#module-postgresql and everything seems to have gone just fine.
11 lines
165 B
Nix
11 lines
165 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# set postgresql version so we don't get any bad surprise
|
|
config.services.postgresql = {
|
|
package = pkgs.postgresql_14;
|
|
};
|
|
}
|