mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
31 lines
699 B
Nix
31 lines
699 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
services.postgresql = {
|
|
package = pkgs.postgresql_15;
|
|
settings = { };
|
|
authentication = ''
|
|
local all postgres peer map=root
|
|
local all admin peer map=admin
|
|
'';
|
|
identMap = ''
|
|
root postgres postgres
|
|
root root postgres
|
|
admin ${config.user} admin
|
|
'';
|
|
ensureUsers = [{
|
|
name = "admin";
|
|
ensureClauses = {
|
|
createdb = true;
|
|
createrole = true;
|
|
login = true;
|
|
};
|
|
}];
|
|
};
|
|
|
|
home-manager.users.${config.user}.home.packages =
|
|
lib.mkIf config.services.postgresql.enable [
|
|
pkgs.pgcli # Postgres client with autocomplete
|
|
];
|
|
|
|
}
|