19 lines
276 B
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; };
|
|
};
|
|
};
|
|
}
|