mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
e753d659c6
* tests: `--show-trace` in CI (#4070) (cherry picked from commitf889ec0ec3
) * tests/stubs: inherit default versions from pkgs (#4069) * tests/stubs: inherit default versions from pkgs * tests/browserpass: temporarily disable on darwin The package currently fails to evaluate on darwin due to a nixpkgs problem: https://github.com/NixOS/nixpkgs/pull/236258#issuecomment-1583450593 (cherry picked from commit69bdd6de50
) * Espanso: Fix broken module to be compatible with Espanso version 2.x (#4066) * Fix espanso module to work with 2.x version * espanso: fix espanso module This module is currently broken. It does not create `config` and `match` folders which are required by espanso 2.x version. This PR fixed this issue and support creating multiple files under `config` and `match` folder. * Espanso: fix espanso module This module is currently broken. It does not create `config` and `match` folders which are required by espanso 2.x version. This PR fixed this issue and support creating multiple files under `config` and `match` folder. Add descriptions * Add versionAtLeast and mkRemovedOptionModule * Correct maintainers list * remove config key from example * format basic-configuration.nix * Update modules/services/espanso.nix Co-authored-by: Naïm Favier <n@monade.li> * fix maintainers list --------- Co-authored-by: Naïm Favier <n@monade.li> (cherry picked from commit1e5d741ea3
) --------- Co-authored-by: Li Yang <71299093+liyangau@users.noreply.github.com>
135 lines
3.8 KiB
Nix
135 lines
3.8 KiB
Nix
{ pkgs, config, lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
mkOption mkEnableOption mkIf maintainers literalExpression types platforms
|
|
mkRemovedOptionModule versionAtLeast;
|
|
|
|
inherit (lib.hm.assertions) assertPlatform;
|
|
|
|
cfg = config.services.espanso;
|
|
espansoVersion = cfg.package.version;
|
|
|
|
yaml = pkgs.formats.yaml { };
|
|
in {
|
|
imports = [
|
|
(mkRemovedOptionModule [ "services" "espanso" "settings" ]
|
|
"Use services.espanso.configs and services.espanso.matches instead.")
|
|
];
|
|
meta.maintainers = [
|
|
maintainers.lucasew
|
|
maintainers.bobvanderlinden
|
|
lib.hm.maintainers.liyangau
|
|
];
|
|
options = {
|
|
services.espanso = {
|
|
enable = mkEnableOption "Espanso: cross platform text expander in Rust";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
description = "Which espanso package to use";
|
|
default = pkgs.espanso;
|
|
defaultText = literalExpression "pkgs.espanso";
|
|
};
|
|
|
|
configs = mkOption {
|
|
type = yaml.type;
|
|
default = { default = { }; };
|
|
example = literalExpression ''
|
|
{
|
|
default = {
|
|
show_notifications = false;
|
|
};
|
|
vscode = {
|
|
filter_title = "Visual Studio Code$";
|
|
backend = "Clipboard";
|
|
};
|
|
};
|
|
'';
|
|
description = ''
|
|
The Espanso configuration to use. See
|
|
<link xlink:href="https://espanso.org/docs/configuration/basics/"/>
|
|
for a description of available options.
|
|
'';
|
|
};
|
|
|
|
matches = mkOption {
|
|
type = yaml.type;
|
|
default = { default.matches = [ ]; };
|
|
example = literalExpression ''
|
|
{
|
|
base = {
|
|
matches = [
|
|
{
|
|
trigger = ":now";
|
|
replace = "It's {{currentdate}} {{currenttime}}";
|
|
}
|
|
{
|
|
trigger = ":hello";
|
|
replace = "line1\nline2";
|
|
}
|
|
{
|
|
regex = ":hi(?P<person>.*)\\.";
|
|
replace = "Hi {{person}}!";
|
|
}
|
|
];
|
|
};
|
|
global_vars = {
|
|
global_vars = [
|
|
{
|
|
name = "currentdate";
|
|
type = "date";
|
|
params = {format = "%d/%m/%Y";};
|
|
}
|
|
{
|
|
name = "currenttime";
|
|
type = "date";
|
|
params = {format = "%R";};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
'';
|
|
description = ''
|
|
The Espanso matches to use. See
|
|
<link xlink:href="https://espanso.org/docs/matches/basics/"/>
|
|
for a description of available options.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(assertPlatform "services.espanso" pkgs platforms.linux)
|
|
{
|
|
assertion = versionAtLeast espansoVersion "2";
|
|
message = ''
|
|
The services.espanso module only supports Espanso version 2 or later.
|
|
'';
|
|
}
|
|
];
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
xdg.configFile = let
|
|
configFiles = lib.mapAttrs' (name: value: {
|
|
name = "espanso/config/${name}.yml";
|
|
value = { source = yaml.generate "${name}.yml" value; };
|
|
}) cfg.configs;
|
|
matchesFiles = lib.mapAttrs' (name: value: {
|
|
name = "espanso/match/${name}.yml";
|
|
value = { source = yaml.generate "${name}.yml" value; };
|
|
}) cfg.matches;
|
|
in configFiles // matchesFiles;
|
|
|
|
systemd.user.services.espanso = {
|
|
Unit = { Description = "Espanso: cross platform text expander in Rust"; };
|
|
Service = {
|
|
Type = "exec";
|
|
ExecStart = "${cfg.package}/bin/espanso daemon";
|
|
Restart = "on-failure";
|
|
};
|
|
Install = { WantedBy = [ "default.target" ]; };
|
|
};
|
|
};
|
|
}
|