From c5182f37cf0cbc444258d5245367193f2f91a4cb Mon Sep 17 00:00:00 2001 From: rycee Date: Sat, 14 Nov 2020 22:17:22 +0000 Subject: [PATCH] deploy: 234de0270a3540be5661cbcc3d957a4952e02823 --- index.html | 4 ++-- options.html | 49 +++++++++++++++++++++++----------------------- release-notes.html | 15 +++++++++++--- tools.html | 14 ++++++------- 4 files changed, 46 insertions(+), 36 deletions(-) diff --git a/index.html b/index.html index bca0284d..718654ae 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -Home Manager Manual

Home Manager Manual


Preface

+Home Manager Manual

Home Manager Manual


Preface

This manual will eventually describes how to install, use, and extend Home Manager.

diff --git a/options.html b/options.html index eea66da0..c35e35a1 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: diff --git a/release-notes.html b/release-notes.html index db9856a6..6a7cd74c 100644 --- a/release-notes.html +++ b/release-notes.html @@ -1,8 +1,17 @@ Appendix C. Release Notes

Release Notes

This section lists the release notes for stable versions of Home Manager and the current unstable version.

C.1. Release 21.03

This is the current unstable branch and the information in this -section is therefore not final.

C.1.1. Highlights

This release has the following notable changes:

  • -Nothing has happened. -

C.1.2. State Version Changes

The state version in this release includes the changes below. These +section is therefore not final.

C.1.1. Highlights

This release has the following notable changes:

  • +The 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"; };
    +};

    becomes

    programs.broot.verbs = [
    +  {
    +    invocation = "p";
    +    execution = ":parent";
    +  }
    +];

C.1.2. State Version Changes

The state version in this release includes the changes below. These changes are only active if the home.stateVersion option is set to "21.03" or later.

  • Nothing has happened. diff --git a/tools.html b/tools.html index 73e82f46..a80b4cc5 100644 --- a/tools.html +++ b/tools.html @@ -1,6 +1,6 @@ -Appendix B. Tools

    Appendix B. Tools

    home-manager - — reconfigure a user environment

    Name

    home-manager +Appendix B. Tools

    Appendix B. Tools

    home-manager + — reconfigure a user environment

    Name

    home-manager — reconfigure a user environment

    Synopsis

    home-manager { build | @@ -72,7 +72,7 @@ | --verbose } - ]

    Description

    + ]

    Description

    This command updates the user environment so that it corresponds to the configuration specified in ~/.config/nixpkgs/home.nix.

    @@ -137,7 +137,7 @@ available for immediate garbage collection.

-

Options

+

Options

The tool accepts the options

-A attrPath @@ -226,15 +226,15 @@ --verbose

Activates verbose output. -

Files

+

Files

~/.local/share/home-manager/news-read-ids

Identifiers of news items that have been shown. Can be deleted to reset the read news indicator. -

Bugs

+

Bugs

Please report any bugs on the project issue tracker. -

See also

+

See also

home-configuration.nix(5)

\ No newline at end of file