diff --git a/index.html b/index.html index c88953d53..3e8baf8cf 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf?+
ca.desrt.dconf?This manual will eventually describe how to install, use, and extend Home Manager.
diff --git a/options.html b/options.html index 9224c7eb6..81170cc44 100644 --- a/options.html +++ b/options.html @@ -6737,6 +6737,33 @@ Requires a window manager that respects scroll hints. file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/tint2.nix>
+ |
programs.tiny.enableWhether to enable tiny, a TUI IRC client written in Rust.
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/programs/tiny.nix>
+ |
programs.tiny.packageThe tiny package to install.
Type: package
Default: pkgs.tiny
Declared by:
+ <home-manager/modules/programs/tiny.nix>
+ |
programs.tiny.settingsConfiguration written to
+$XDG_CONFIG_HOME/tiny/config.yml. See
+https://github.com/osa1/tiny/blob/master/crates/tiny/config.yml
+for the default configuration.
+
Type: YAML value
Default: { }
Example:
{
+ servers = [
+ {
+ addr = "irc.libera.chat";
+ port = 6697;
+ tls = true;
+ realname = "John Doe";
+ nicks = [ "tinyuser" ];
+ }
+ ];
+ defaults = {
+ nicks = [ "tinyuser" ];
+ realname = "John Doe";
+ join = [];
+ tls = true;
+ };
+};
+Declared by:
+ <home-manager/modules/programs/tiny.nix>
|
programs.tmux.enableWhether to enable tmux.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.packageThe tmux package to install
Type: package
Default: pkgs.tmux
Example: pkgs.tmux
Declared by: