nix-configs/schrottserver/mumble.nix

9 lines
168 B
Nix
Raw Normal View History

2023-02-08 08:13:28 +01:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ murmur ];
services.murmur = {
enable = true;
registerHostname = "mumble.schrottkatze.de";
};
}