15 lines
179 B
Nix
15 lines
179 B
Nix
|
|
{ pkgs, lib, ... }:
|
||
|
|
let
|
||
|
|
|
||
|
|
in pkgs.nixosTest {
|
||
|
|
name = "postgresql";
|
||
|
|
|
||
|
|
nodes.machine = { config, pkgs, ... }: {
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
testScript = { nodes, ... }: ''
|
||
|
|
start_all()
|
||
|
|
'';
|
||
|
|
}
|