1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 07:59:24 +03:00

postgresql: give postgres user a shell

This commit is contained in:
Domen Kožar 2018-09-26 12:11:28 +01:00
parent e0f46105aa
commit 82feb4b66e
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246

View file

@ -188,6 +188,8 @@ in
uid = config.ids.uids.postgres;
group = "postgres";
description = "PostgreSQL server user";
home = "${cfg.dataDir}";
useDefaultShell = true;
};
users.groups.postgres.gid = config.ids.gids.postgres;