dotfiles/nix/modules/home-manager/espanso.nix

19 lines
275 B
Nix

{ lib, ... }:
{
services.espanso = {
enable = true;
configs = {
default = {
show_notifications = false;
toggle_key = "LEFT_ALT";
};
};
matches = {
base = import ./espanso/matches/base.nix { inherit lib; };
};
};
}