eve-psr-nix0/nix/application/postgresql.nix

7 lines
102 B
Nix
Raw Normal View History

{ pkgs, config, ...}: {
services.postgresql = {
enable = true;
settings.port = 5432;
};
}