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:
parent
02057ba30b
commit
60d6efebca
2 changed files with 14 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
{ ... }:
|
||||
espansoExtraArgs:
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
services.espanso = {
|
||||
|
@ -36,7 +37,7 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
} // espansoExtraArgs;
|
||||
|
||||
test.stubs.espanso = { };
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue