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

14 lines
389 B
Nix
Raw Normal View History

2024-12-19 22:40:00 +03:00
{ config, ... }:
{
services.murmur = {
enable = true;
clientCertRequired = true;
2024-12-19 22:40:00 +03:00
environmentFile = "${config.services.murmur.stateDir}/Env";
2024-12-19 22:45:10 +03:00
password = "$MURMURD_PASSWORD";
port = 22666;
registerHostname = "chat.voronind.com";
sslCert = "/etc/letsencrypt/live/voronind.com/fullchain.pem";
sslKey = "/etc/letsencrypt/live/voronind.com/privkey.pem";
};
2024-12-07 04:48:15 +03:00
}