1
0
Fork 0
selfhostblocks/test/vm/postgresql.nix
2023-11-21 23:07:39 -08:00

14 lines
179 B
Nix

{ pkgs, lib, ... }:
let
in pkgs.nixosTest {
name = "postgresql";
nodes.machine = { config, pkgs, ... }: {
};
testScript = { nodes, ... }: ''
start_all()
'';
}