nix-configs/hosts/schrottserver/mumble.nix

9 lines
168 B
Nix
Raw Normal View History

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