From fe75a7198345b4c0a3456f894d26df81372c0b18 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 17 Dec 2025 02:48:11 +0100 Subject: [PATCH] nixosTests.botamusique: remove hexa from maintainers --- nixos/tests/botamusique.nix | 45 +++++++++++++++---------------------- 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/nixos/tests/botamusique.nix b/nixos/tests/botamusique.nix index 30a005aa49f9..2a5c23000235 100644 --- a/nixos/tests/botamusique.nix +++ b/nixos/tests/botamusique.nix @@ -1,39 +1,30 @@ -{ - pkgs, - lib, - ... -}: - { name = "botamusique"; - meta.maintainers = with lib.maintainers; [ hexa ]; nodes = { - machine = - { config, ... }: - { - networking.extraHosts = '' - 127.0.0.1 all.api.radio-browser.info - ''; + machine = { + networking.extraHosts = '' + 127.0.0.1 all.api.radio-browser.info + ''; - services.murmur = { - enable = true; - registerName = "NixOS tests"; - }; + services.murmur = { + enable = true; + registerName = "NixOS tests"; + }; - services.botamusique = { - enable = true; - settings = { - server = { - channel = "NixOS tests"; - }; - bot = { - version = false; - auto_check_update = false; - }; + services.botamusique = { + enable = true; + settings = { + server = { + channel = "NixOS tests"; + }; + bot = { + version = false; + auto_check_update = false; }; }; }; + }; }; testScript = ''