nixosTests.miniflux: fix test

This broke in 41c5662cbec9930b337a895c7cb010948d9766a9, where $PSQL was
removed and added to PATH instead.
This commit is contained in:
Wolfgang Walther 2025-07-06 16:19:48 +02:00
parent 20d93e55cf
commit 1510ee5a2a
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1

View File

@ -81,7 +81,7 @@ in
'';
};
systemd.services.postgresql-setup.postStart = lib.mkAfter ''
$PSQL -tAd miniflux -c 'CREATE EXTENSION hstore;'
psql -tAd miniflux -c 'CREATE EXTENSION hstore;'
'';
networking.firewall.allowedTCPPorts = [ config.services.postgresql.settings.port ];
};