diff --git a/index.html b/index.html index bca0284d0..718654aed 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf
?+
ca.desrt.dconf
?This manual will eventually describes how to install, use, and extend Home Manager.
diff --git a/options.html b/options.html
index eea66da0d..c35e35a1d 100644
--- a/options.html
+++ b/options.html
@@ -2150,48 +2150,49 @@ Add _fg
for a foreground color and
}
Declared by:
<home-manager/modules/programs/broot.nix>
- |
programs.broot.verbs
Define new verbs. The attribute name indicates how the verb is -called by the user, with placeholders for arguments. +
programs.broot.verbs
Define new verbs. For more information, see +https://dystroy.org/broot/documentation/configuration/#verb-definition-attributes.
The possible attributes are:
-
execution
(mandatory)how the verb is executed
shortcut
(optional)an alternate way to call the verb (without +
invocation
(optional)how the verb is called by the user, with placeholders for arguments
execution
(mandatory)how the verb is executed
key
(optional)a keyboard key triggering execution
shortcut
(optional)an alternate way to call the verb (without the arguments part)
leave_broot
(optional)whether to quit broot on execution
(default: true
)
from_shell
(optional)whether the verb must be executed from the
parent shell (default:
false
)
-
Type: attribute set of attribute set of boolean or stringss
Default:
+
Type: list of attribute set of boolean or stringss
Default:
+
+ [
{
- create {subpath} =
+ execution = ":parent"; invocation = "p";
+ }
+
{
- execution = "\$EDITOR {directory}/{subpath}";
+ execution = "\$EDITOR {file}"; invocation = "edit"; shortcut = "e";
}
- ; edit =
+
{
- execution = "\$EDITOR {file}"; shortcut = "e";
+ execution = "\$EDITOR {directory}/{subpath}"; invocation = "create {subpath}";
}
- ; p =
+
{
- execution = ":parent";
- }
- ; view =
- {
- execution = "less {file}";
- }
- ;
+ execution = "less {file}"; invocation = "view";
}
+
+ ]
-
Example:
{ - "p" = { execution = ":parent"; }; - "edit" = { shortcut = "e"; execution = "$EDITOR {file}" ; }; - "create {subpath}" = { execution = "$EDITOR {directory}/{subpath}"; }; - "view" = { execution = "less {file}"; }; - "blop {name}\\.{type}" = { +Example:
[ + { 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 = "/bin/mkdir {parent}/{type} && /usr/bin/nvim {parent}/{type}/{name}.{type}"; from_shell = true; - }; -} + } +]Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.browserpass.enable
Whether to enable the browserpass extension host application.
Type: boolean
Default: This section lists the release notes for stable versions of Home Manager and the current unstable version. This is the current unstable branch and the information in this
-section is therefore not final. The state version in this release includes the changes below. These
+section is therefore not final. This release has the following notable changes:
+The becomes The state version in this release includes the changes below. These
changes are only active if the home-manager
+ home-manager
— reconfigure a user environment
This command updates the user environment so that it corresponds to the
configuration specified in
@@ -137,7 +137,7 @@
available for immediate garbage collection.
-
The tool accepts the options
Activates verbose output.
-
diff --git a/release-notes.html b/release-notes.html
index db9856a67..6a7cd74c7 100644
--- a/release-notes.html
+++ b/release-notes.html
@@ -1,8 +1,17 @@
programs.broot.verbs
option is now a list rather than an
+attribute set. To migrate, move the keys of the attrset into the list
+items' invocation
keys. For example,
+programs.broot.verbs = {
+ "p" = { execution = ":parent"; };
+};
programs.broot.verbs = [
+ {
+ invocation = "p";
+ execution = ":parent";
+ }
+];
home.stateVersion
option is set to
"21.03" or later.Name
Name
Synopsis
home-manager
{
build
|
@@ -72,7 +72,7 @@
|
--verbose
}
- ]Description
~/.config/nixpkgs/home.nix
.
Options
-A
@@ -226,15 +226,15 @@
attrPath
--verbose