mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-30 22:57:54 +00:00
wezterm: set up domains
This commit is contained in:
parent
8b4084a972
commit
d294412dd2
21
wezterm/config/mux_server.lua
Normal file
21
wezterm/config/mux_server.lua
Normal file
@ -0,0 +1,21 @@
|
||||
-- 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 = "mux.foodogsquared.one",
|
||||
remote_address = "mux.foodogsquared.one:9801",
|
||||
bootstrap_via_ssh = "plover@mux.foodogsquared.one",
|
||||
},
|
||||
}
|
||||
|
||||
config.default_gui_startup_args = { "connect", "unix" }
|
||||
return config
|
||||
end
|
||||
|
||||
return module
|
@ -4,5 +4,6 @@ config:set_strict_mode(true)
|
||||
require("config/base").apply_to_config(config)
|
||||
require("config/keys").apply_to_config(config)
|
||||
require("config/appearance").apply_to_config(config)
|
||||
require("config/mux_server").apply_to_config(config)
|
||||
|
||||
return config
|
||||
|
Loading…
Reference in New Issue
Block a user