1
0
Fork 0
selfhostblocks/test/vm/postgresql.nix

19 lines
279 B
Nix
Raw Normal View History

2023-11-21 23:03:38 -08:00
{ pkgs, lib, ... }:
let
in pkgs.nixosTest {
name = "postgresql";
nodes.machine = { config, pkgs, ... }: {
2023-11-21 23:30:16 -08:00
imports = [
../../modules/blocks/postgresql.nix
];
services.postgresql.enable = true;
2023-11-21 23:03:38 -08:00
};
testScript = { nodes, ... }: ''
start_all()
'';
}