mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
22 lines
463 B
Lua
22 lines
463 B
Lua
-- A configuration set for remote multiplexer-related options.
|
|
local module = {}
|
|
|
|
function module.apply_to_config(config)
|
|
config.unix_domains = {
|
|
{ name = "unix" },
|
|
}
|
|
|
|
config.tls_clients = {
|
|
{
|
|
name = "foodogsquared.one",
|
|
remote_address = "plover.foodogsquared.one:9801",
|
|
bootstrap_via_ssh = "plover@plover.foodogsquared.one",
|
|
},
|
|
}
|
|
|
|
config.default_gui_startup_args = { "connect", "unix" }
|
|
return config
|
|
end
|
|
|
|
return module
|