9 lines
168 B
Nix
9 lines
168 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [ murmur ];
|
||
|
services.murmur = {
|
||
|
enable = true;
|
||
|
registerHostname = "mumble.schrottkatze.de";
|
||
|
};
|
||
|
}
|