nixos-config/hosts/plover/config/wezterm/config.lua
Gabriel Arazas a6fcc6eec6
hosts/plover: update Wezterm mux server config
It's not fully working but we'll get there.
2023-10-08 03:29:06 +08:00

13 lines
430 B
Lua

return {
tls_servers = {
-- These are expected to be imported through systemd LoadCredentials
-- directive.
{
pem_private_key = os.getenv("CREDENTIALS_DIRECTORY") .. "/key.pem",
pem_cert = os.getenv("CREDENTIALS_DIRECTORY") .. "/cert.pem",
pem_ca = os.getenv("CREDENTIALS_DIRECTORY") .. "/fullchain.pem",
bind_address = "@listen_address@",
},
},
}