Skip to content

Commit

Permalink
feat(nix): Add Espanso
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Jan 19, 2024
1 parent 71795be commit dcd7fea
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ in {
imports = [
# TODO figure out how to load the arkenfox flake module conditionally, since nixpkgs Firefox is broken on macOS
# ./modules/arkenfox.nix
./modules/espanso.nix
./modules/nvim.nix
./modules/fish.nix
./modules/fzf.nix
Expand Down
14 changes: 14 additions & 0 deletions home-manager/modules/espanso.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
services.espanso = {
enable = true;
matches = {
base = {
matches = [{
trigger = ":shrug";
replace = \\_(ツ)_/¯";
}];
};
};
};
}

0 comments on commit dcd7fea

Please sign in to comment.