1
0

remove espanso

This commit is contained in:
Antoine Langlois 2024-02-23 11:51:42 +01:00
parent 4780da3673
commit 94ad4799f7
Signed by: DataHearth
GPG Key ID: 946E2D0C410C7B3D
2 changed files with 0 additions and 47 deletions

View File

@ -12,7 +12,6 @@
"${modules_hm_path}/go.nix"
"${modules_hm_path}/utils.nix"
"${modules_hm_path}/services/dunst.nix"
"${modules_hm_path}/services/espanso.nix"
"${modules_hm_path}/services/gpg_ssh_agent.nix"
"${modules_hm_path}/hyprland"

View File

@ -1,46 +0,0 @@
{ ... }:
{
services.espanso = {
enable = true;
# configs = {};
matches = {
default = {
matches = [
{
trigger = ":date";
replace = "{date}";
vars = [
{
name = "date";
type = "date";
format = "%d/%m/%Y";
}
];
}
{
trigger = ":datetime";
replace = "{datetime}";
vars = [
{
name = "datetime";
type = "date";
format = "%d/%m/%Y %H:%M:%S";
}
];
}
{
trigger = ":time";
replace = "{time}";
vars = [
{
name = "time";
type = "date";
format = "%H:%M:%S";
}
];
}
];
};
};
};
}