Files
nixos/modules/server/postgresql.nix
T
2025-10-26 09:55:35 +03:00

16 lines
185 B
Nix

{
config,
lib,
pkgs,
inputs,
...
}:
let
master = import inputs.nixpkgs-master {
system = "x86_64-linux";
};
in
{
services.postgresql.package = pkgs.postgresql_17;
}