14 lines
331 B
Nix
14 lines
331 B
Nix
{ ... }:
|
|
{
|
|
services.murmur = {
|
|
enable = true;
|
|
clientCertRequired = true;
|
|
password = "bonjour";
|
|
port = 22666;
|
|
registerHostname = "chat.voronind.com";
|
|
sslCert = "/etc/letsencrypt/live/voronind.com/fullchain.pem";
|
|
sslKey = "/etc/letsencrypt/live/voronind.com/privkey.pem";
|
|
extraConfig = '''';
|
|
};
|
|
}
|