mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
18 lines
390 B
Nix
18 lines
390 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
security.acme = { certs."kittywit.ch" = { group = "kittywit-ch"; }; };
|
|
|
|
users.groups."kittywit-ch".members = [ "murmur" "nginx" "syncplay" ];
|
|
|
|
services.murmur = {
|
|
enable = true;
|
|
|
|
hostName = "mumble.kittywit.ch";
|
|
|
|
extraConfig = ''
|
|
sslCert=/var/lib/acme/kittywit.ch/fullchain.pem
|
|
sslKey=/var/lib/acme/kittywit.ch/key.pem
|
|
'';
|
|
};
|
|
}
|