Compare commits

..

2 commits

Author SHA1 Message Date
Nick
e88b50e51e feat: added trash-cli 2025-04-11 23:57:05 -05:00
Nick
c287906c9b feat: added the em dash 2025-04-11 22:18:38 -05:00
2 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,11 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
trash-cli
;
};
}

View file

@ -1,8 +1,17 @@
{ pkgs, ... }: {
pkgs,
flake,
osConfig,
...
}:
let
inherit (flake.config.machines.devices) mars;
hostname = osConfig.networking.hostName;
in
{ {
services.espanso = { services.espanso = {
enable = true; enable = true;
package = pkgs.espanso-wayland; package = if hostname == mars.name then pkgs.espanso-wayland else pkgs.espanso;
matches = { matches = {
base = { base = {
matches = [ matches = [
@ -34,6 +43,10 @@
trigger = ":exist"; trigger = ":exist";
replace = ""; replace = "";
} }
{
trigger = ":em";
replace = "";
}
]; ];
}; };
global_vars = { global_vars = {