mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
9 lines
168 B
Nix
9 lines
168 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [ murmur ];
|
||
|
services.murmur = {
|
||
|
enable = true;
|
||
|
registerHostname = "mumble.schrottkatze.de";
|
||
|
};
|
||
|
}
|