diff options
| -rw-r--r-- | modules/by-name/mu/murmur/module.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/by-name/mu/murmur/module.nix b/modules/by-name/mu/murmur/module.nix index 5cc6f7d..061e236 100644 --- a/modules/by-name/mu/murmur/module.nix +++ b/modules/by-name/mu/murmur/module.nix @@ -47,8 +47,11 @@ in { The entire team of [name of the company] is thrilled to welcome you on board. We hope you’ll do some amazing work here! ''; - sslKey = "${cfg.murmurStore}/key.pem"; - sslCert = "${cfg.murmurStore}/fullchain.pem"; + + tls = { + keyPath = "${cfg.murmurStore}/key.pem"; + certPath = "${cfg.murmurStore}/fullchain.pem"; + }; registerUrl = cfg.url; registerName = cfg.name; |
