Remove espanso

This commit is contained in:
Oliver Davies 2025-03-21 15:01:39 +00:00
parent 3246a34b8d
commit c347c217a4
4 changed files with 0 additions and 27 deletions

View file

@ -4,7 +4,6 @@
./copyq.nix
./discord.nix
./dwm.nix
./espanso.nix
./flameshot.nix
./gtk.nix
./media

View file

@ -1,24 +0,0 @@
{ config, lib, ... }:
with lib;
{
options.homeManagerModules.espanso.enable = mkEnableOption "Enable espanso";
config = mkIf config.homeManagerModules.espanso.enable {
services.espanso = {
enable = true;
configs = {
default = {
show_notifications = false;
toggle_key = "LEFT_ALT";
};
};
matches = {
base = import ./espanso/matches/base.nix { inherit lib; };
};
};
};
}