nix/host/x86_64-linux/home/Mumble.nix

13 lines
314 B
Nix
Raw Normal View History

2024-12-07 04:48:15 +03:00
{ ... }: {
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";
2024-12-08 04:04:34 +03:00
extraConfig = '''';
2024-12-07 04:48:15 +03:00
};
}