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

19 lines
276 B
Nix

let
baseUrl = "https://www.oliverdavies.uk";
in
{
services.espanso = {
enable = true;
configs = {
default = {
show_notifications = false;
};
};
matches = {
base = import ./espanso/matches.nix { inherit baseUrl; };
};
};
}