Skip to content

Commit

Permalink
nixos/mobilizon: fix integration test by using postgresql_14
Browse files Browse the repository at this point in the history
  • Loading branch information
erictapen committed Nov 1, 2023
1 parent 0cbe9f6 commit 80ba583
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nixos/tests/mobilizon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ./make-test-python.nix ({ lib, ... }:
meta.maintainers = with lib.maintainers; [ minijackson erictapen ];

nodes.server =
{ ... }:
{ pkgs, ... }:
{
services.mobilizon = {
enable = true;
Expand All @@ -25,6 +25,8 @@ import ./make-test-python.nix ({ lib, ... }:
};
};

services.postgresql.package = pkgs.postgresql_14;

security.pki.certificateFiles = [ certs.ca.cert ];

services.nginx.virtualHosts."${mobilizonDomain}" = {
Expand Down

0 comments on commit 80ba583

Please sign in to comment.