1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-21 17:59:39 +01:00
home-manager/tests/modules/programs/lazysql/example-config.toml
2025-06-07 23:51:28 -05:00

19 lines
488 B
TOML

[application]
DefaultPageSize = 300
DisableSidebar = false
SidebarOverlay = false
[[database]]
DBName = "foo"
Name = "Production database"
Provider = "postgres"
URL = "postgres://postgres:urlencodedpassword@localhost:$${port}/foo"
[[database.Commands]]
Command = "ssh -tt remote-bastion -L $${port}:localhost:5432"
WaitForPort = "$${port}"
[[database]]
DBName = "foo"
Name = "Development database"
Provider = "postgres"
URL = "postgres://postgres:urlencodedpassword@localhost:5432/foo"