feat: install espanso

This commit is contained in:
wi11-holdsworth 2025-09-24 19:09:11 +10:00
parent 4bf909b4be
commit 7d2dd68bc5

View file

@ -0,0 +1,20 @@
{
config,
lib,
...
}:
let
feature = "espanso";
in
{
config = lib.mkIf config.${feature}.enable {
services.espanso = {
enable = true;
configs = { };
};
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}