From b2a74bc0ab17f32532318e80b32e0759583a287a Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 18 Feb 2023 19:27:51 +0100 Subject: [PATCH] tests/miriway: Refer to upstream issue about keyboard problem --- nixos/tests/miriway.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/tests/miriway.nix b/nixos/tests/miriway.nix index c4c50646f015..2ddac4cc61de 100644 --- a/nixos/tests/miriway.nix +++ b/nixos/tests/miriway.nix @@ -3,7 +3,10 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: { meta = { maintainers = with lib.maintainers; [ OPNA2608 ]; - # FIXME On ARM Miriway inside the VM doesn't receive keyboard inputs, why? + # Natively running Mir has problems with capturing the first registered libinput device. + # In our VM runners on ARM and on some hardware configs (my RPi4, distro-independent), this misses the keyboard. + # It can be worked around by dis- and reconnecting the affected hardware, but we can't do this in these tests. + # https://github.com/MirServer/mir/issues/2837 broken = pkgs.stdenv.hostPlatform.isAarch; };