1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-23 03:29:45 +01:00

espanso: add wayland test

Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
This commit is contained in:
phanirithvij 2024-10-16 21:40:41 +05:30
parent 02057ba30b
commit 60d6efebca
2 changed files with 14 additions and 3 deletions

View file

@ -1,4 +1,5 @@
{ ... }:
espansoExtraArgs:
{ config, ... }:
{
services.espanso = {
@ -36,7 +37,7 @@
];
};
};
};
} // espansoExtraArgs;
test.stubs.espanso = { };

View file

@ -1 +1,11 @@
{ espanso-basic-configuration = ./basic-configuration.nix; }
{
espanso-basic-configuration = import ./basic-configuration.nix { };
espanso-basic-configuration-wayland = import ./basic-configuration.nix {
waylandSupport = true;
x11Support = false;
};
espanso-basic-configuration-x11 = import ./basic-configuration.nix {
waylandSupport = false;
x11Support = true;
};
}