nix/host/x86_64-linux/home/Mumble.nix
2024-12-08 05:29:04 +03:00

13 lines
314 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 = '''';
};
}