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

15 lines
179 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, ... }: {
};
testScript = { nodes, ... }: ''
start_all()
'';
}