mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
92 lines
2.8 KiB
Nix
92 lines
2.8 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
cfg = config.programs.carapace;
|
|
bin = lib.getExe cfg.package;
|
|
in {
|
|
meta.maintainers = with lib.maintainers; [ weathercold bobvanderlinden ];
|
|
|
|
options.programs.carapace = {
|
|
enable = lib.mkEnableOption
|
|
"carapace, a multi-shell multi-command argument completer";
|
|
|
|
package = lib.mkPackageOption pkgs "carapace" { };
|
|
|
|
enableBashIntegration =
|
|
lib.hm.shell.mkBashIntegrationOption { inherit config; };
|
|
|
|
enableFishIntegration =
|
|
lib.hm.shell.mkFishIntegrationOption { inherit config; };
|
|
|
|
enableNushellIntegration =
|
|
lib.hm.shell.mkNushellIntegrationOption { inherit config; };
|
|
|
|
enableZshIntegration =
|
|
lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
programs = {
|
|
bash.initExtra = lib.mkIf cfg.enableBashIntegration ''
|
|
source <(${bin} _carapace bash)
|
|
'';
|
|
|
|
zsh.initContent = lib.mkIf cfg.enableZshIntegration ''
|
|
source <(${bin} _carapace zsh)
|
|
'';
|
|
|
|
fish.interactiveShellInit = lib.mkIf cfg.enableFishIntegration ''
|
|
${bin} _carapace fish | source
|
|
'';
|
|
|
|
nushell = lib.mkIf cfg.enableNushellIntegration {
|
|
extraConfig = ''
|
|
source ${
|
|
pkgs.runCommand "carapace-nushell-config.nu" { } ''
|
|
${bin} _carapace nushell >> "$out"
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
|
|
xdg.configFile = lib.mkIf (config.programs.fish.enable
|
|
&& cfg.enableFishIntegration
|
|
&& lib.versionOlder config.programs.fish.package.version "4.0.0") (
|
|
# Convert the entries from `carapace --list` to empty
|
|
# xdg.configFile."fish/completions/NAME.fish" entries.
|
|
#
|
|
# This is to disable fish builtin completion for each of the
|
|
# carapace-supported completions.
|
|
#
|
|
# This is necessary for carapace to properly work with fish version < 4.0b1.
|
|
#
|
|
# It is in line with the instructions from
|
|
# carapace-bin:
|
|
#
|
|
# carapace --list | awk '{print $1}' | xargs -I{} touch ~/.config/fish/completions/{}.fish
|
|
#
|
|
# See https://carapace-sh.github.io/carapace-bin/setup.html#fish
|
|
let
|
|
carapaceListFile = pkgs.runCommandLocal "carapace-list" {
|
|
buildInputs = [ cfg.package ];
|
|
} ''
|
|
${bin} --list > $out
|
|
'';
|
|
in lib.pipe carapaceListFile [
|
|
lib.fileContents
|
|
(lib.splitString "\n")
|
|
(map (builtins.match "^([a-z0-9-]+) .*"))
|
|
(builtins.filter
|
|
(match: match != null && (builtins.length match) > 0))
|
|
(map (match: builtins.head match))
|
|
(map (name: {
|
|
name = "fish/completions/${name}.fish";
|
|
value = { text = ""; };
|
|
}))
|
|
builtins.listToAttrs
|
|
]);
|
|
};
|
|
}
|