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

19 lines
276 B
Nix
Raw Normal View History

let
baseUrl = "https://www.oliverdavies.uk";
in
{
2023-12-14 23:59:56 +00:00
services.espanso = {
enable = true;
configs = {
default = {
show_notifications = false;
};
};
2023-12-14 23:59:56 +00:00
matches = {
base = import ./espanso/matches.nix { inherit baseUrl; };
2023-12-14 23:59:56 +00:00
};
};
}