nixos/mastodon: fix integration test

This commit is contained in:
Kerstin Humm 2023-11-13 15:23:49 +01:00
parent e44462d602
commit 0f535d40f9
No known key found for this signature in database
GPG key ID: 40293358C7B9326B
2 changed files with 5 additions and 0 deletions

View file

@ -29,6 +29,8 @@ in
services.postgresql = {
enable = true;
# TODO remove once https://github.com/NixOS/nixpkgs/pull/266270 is resolved.
package = pkgs.postgresql_14;
enableTCPIP = true;
authentication = ''
hostnossl mastodon_local mastodon_test 192.168.2.201/32 md5

View file

@ -40,6 +40,9 @@ in
port = 31637;
};
# TODO remove once https://github.com/NixOS/nixpkgs/pull/266270 is resolved.
services.postgresql.package = pkgs.postgresql_14;
services.mastodon = {
enable = true;
configureNginx = true;