roles/dbserver-postgresql.nix: add psycopg2 module to config

This commit is contained in:
2025-07-06 23:34:22 -07:00
parent 2da709583d
commit 311a1c0c21

View File

@@ -31,6 +31,7 @@ in {
environment.systemPackages = with pkgs; [
cfg.dbPackage
cfg.ansibleLibPackage
(python3.withPackages (ps: with ps; [ psycopg2 ]))
];
services.postgresql = {