mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
244 lines
8.2 KiB
Nix
244 lines
8.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.broot;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
settingsModule = {
|
|
freeformType = tomlFormat.type;
|
|
|
|
options = {
|
|
modal = mkEnableOption "modal (vim) mode";
|
|
|
|
verbs = mkOption {
|
|
type = with types; listOf (attrsOf (either bool str));
|
|
default = [ ];
|
|
example = literalExpression ''
|
|
[
|
|
{ invocation = "p"; execution = ":parent"; }
|
|
{ invocation = "edit"; shortcut = "e"; execution = "$EDITOR {file}" ; }
|
|
{ invocation = "create {subpath}"; execution = "$EDITOR {directory}/{subpath}"; }
|
|
{ invocation = "view"; execution = "less {file}"; }
|
|
{
|
|
invocation = "blop {name}\\.{type}";
|
|
execution = "mkdir {parent}/{type} && ''${pkgs.neovim}/bin/nvim {parent}/{type}/{name}.{type}";
|
|
from_shell = true;
|
|
}
|
|
]
|
|
'';
|
|
description = ''
|
|
Define new verbs. For more information, see
|
|
<link xlink:href="https://dystroy.org/broot/documentation/configuration/#verb-definition-attributes"/>.
|
|
</para><para>
|
|
The possible attributes are:
|
|
</para>
|
|
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><literal>invocation</literal> (optional)</term>
|
|
<listitem><para>how the verb is called by the user, with placeholders for arguments</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><literal>execution</literal> (mandatory)</term>
|
|
<listitem><para>how the verb is executed</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><literal>key</literal> (optional)</term>
|
|
<listitem><para>a keyboard key triggering execution</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><literal>shortcut</literal> (optional)</term>
|
|
<listitem><para>an alternate way to call the verb (without
|
|
the arguments part)</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><literal>leave_broot</literal> (optional)</term>
|
|
<listitem><para>whether to quit broot on execution
|
|
(default: <literal>true</literal>)</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><literal>from_shell</literal> (optional)</term>
|
|
<listitem><para>whether the verb must be executed from the
|
|
parent shell (default:
|
|
<literal>false</literal>)</para></listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
'';
|
|
};
|
|
|
|
skin = mkOption {
|
|
type = types.attrsOf types.str;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
status_normal_fg = "grayscale(18)";
|
|
status_normal_bg = "grayscale(3)";
|
|
status_error_fg = "red";
|
|
status_error_bg = "yellow";
|
|
tree_fg = "red";
|
|
selected_line_bg = "grayscale(7)";
|
|
permissions_fg = "grayscale(12)";
|
|
size_bar_full_bg = "red";
|
|
size_bar_void_bg = "black";
|
|
directory_fg = "lightyellow";
|
|
input_fg = "cyan";
|
|
flag_value_fg = "lightyellow";
|
|
table_border_fg = "red";
|
|
code_fg = "lightyellow";
|
|
}
|
|
'';
|
|
description = ''
|
|
Color configuration.
|
|
</para><para>
|
|
Complete list of keys (expected to change before the v1 of broot):
|
|
|
|
<itemizedlist>
|
|
<listitem><para><literal>char_match</literal></para></listitem>
|
|
<listitem><para><literal>code</literal></para></listitem>
|
|
<listitem><para><literal>directory</literal></para></listitem>
|
|
<listitem><para><literal>exe</literal></para></listitem>
|
|
<listitem><para><literal>file</literal></para></listitem>
|
|
<listitem><para><literal>file_error</literal></para></listitem>
|
|
<listitem><para><literal>flag_label</literal></para></listitem>
|
|
<listitem><para><literal>flag_value</literal></para></listitem>
|
|
<listitem><para><literal>input</literal></para></listitem>
|
|
<listitem><para><literal>link</literal></para></listitem>
|
|
<listitem><para><literal>permissions</literal></para></listitem>
|
|
<listitem><para><literal>selected_line</literal></para></listitem>
|
|
<listitem><para><literal>size_bar_full</literal></para></listitem>
|
|
<listitem><para><literal>size_bar_void</literal></para></listitem>
|
|
<listitem><para><literal>size_text</literal></para></listitem>
|
|
<listitem><para><literal>spinner</literal></para></listitem>
|
|
<listitem><para><literal>status_error</literal></para></listitem>
|
|
<listitem><para><literal>status_normal</literal></para></listitem>
|
|
<listitem><para><literal>table_border</literal></para></listitem>
|
|
<listitem><para><literal>tree</literal></para></listitem>
|
|
<listitem><para><literal>unlisted</literal></para></listitem>
|
|
</itemizedlist></para>
|
|
|
|
<para>
|
|
Add <literal>_fg</literal> for a foreground color and
|
|
<literal>_bg</literal> for a background colors.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
shellInit = shell:
|
|
# Using mkAfter to make it more likely to appear after other
|
|
# manipulations of the prompt.
|
|
mkAfter ''
|
|
source ${
|
|
pkgs.runCommand "br.${shell}" { nativeBuildInputs = [ cfg.package ]; }
|
|
"broot --print-shell-function ${shell} > $out"
|
|
}
|
|
'';
|
|
in {
|
|
meta.maintainers = [ hm.maintainers.aheaume maintainers.dermetfan ];
|
|
|
|
imports = [
|
|
(mkRenamedOptionModule [ "programs" "broot" "modal" ] [
|
|
"programs"
|
|
"broot"
|
|
"settings"
|
|
"modal"
|
|
])
|
|
(mkRenamedOptionModule [ "programs" "broot" "verbs" ] [
|
|
"programs"
|
|
"broot"
|
|
"settings"
|
|
"verbs"
|
|
])
|
|
(mkRenamedOptionModule [ "programs" "broot" "skin" ] [
|
|
"programs"
|
|
"broot"
|
|
"settings"
|
|
"skin"
|
|
])
|
|
];
|
|
|
|
options.programs.broot = {
|
|
enable = mkEnableOption "Broot, a better way to navigate directories";
|
|
|
|
enableBashIntegration = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to enable Bash integration.
|
|
'';
|
|
};
|
|
|
|
enableZshIntegration = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to enable Zsh integration.
|
|
'';
|
|
};
|
|
|
|
enableFishIntegration = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to enable Fish integration.
|
|
'';
|
|
};
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.broot;
|
|
defaultText = literalExpression "pkgs.broot";
|
|
description = "Package providing broot";
|
|
};
|
|
|
|
settings = mkOption {
|
|
type = types.submodule settingsModule;
|
|
default = { };
|
|
description = "Verbatim config entries";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
xdg.configFile."broot" = {
|
|
recursive = true;
|
|
source = pkgs.symlinkJoin {
|
|
name = "xdg.configFile.broot";
|
|
paths = [
|
|
# Copy all files under /resources/default-conf
|
|
"${cfg.package.src}/resources/default-conf"
|
|
|
|
# Dummy file to prevent broot from trying to reinstall itself
|
|
(pkgs.writeTextDir "launcher/installed-v1" "")
|
|
];
|
|
|
|
postBuild = ''
|
|
ln -s ${
|
|
tomlFormat.generate "broot-config" cfg.settings
|
|
} $out/conf.toml
|
|
|
|
# Remove conf.hjson, whose content has been merged into programs.broot.settings
|
|
rm $out/conf.hjson
|
|
'';
|
|
};
|
|
};
|
|
|
|
programs.broot.settings = builtins.fromJSON (builtins.readFile
|
|
(pkgs.runCommand "default-conf.json" {
|
|
nativeBuildInputs = [ pkgs.hjson ];
|
|
}
|
|
"hjson -c ${cfg.package.src}/resources/default-conf/conf.hjson > $out"));
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration (shellInit "bash");
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration (shellInit "zsh");
|
|
|
|
programs.fish.shellInit = mkIf cfg.enableFishIntegration (shellInit "fish");
|
|
};
|
|
}
|