0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

Merge release-24.11 into staging-next-24.11

This commit is contained in:
github-actions[bot] 2025-01-03 00:16:54 +00:00 committed by GitHub
commit c84fc167c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 934 additions and 92 deletions

View file

@ -11,6 +11,9 @@
machine = {
services.kmonad = {
enable = true;
extraArgs = [
"--log-level=debug"
];
keyboards = {
defaultKbd = {
device = "/dev/input/by-id/vm-default-kbd";
@ -43,5 +46,7 @@
with subtest("kmonad is running"):
machine.succeed(f"systemctl status {service_name}")
with subtest("kmonad symlink is created"):
machine.wait_for_file(f"/dev/input/by-id/{service_name}", timeout=5)
'';
}