diff --git a/index.html b/index.html index ce7c646f..7aa411b4 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf
or dconf.service
?+
ca.desrt.dconf
or dconf.service
?This manual will eventually describe how to install, use, and extend Home Manager.
diff --git a/options.html b/options.html
index f09dac5e..cbfb1a44 100644
--- a/options.html
+++ b/options.html
@@ -7695,6 +7695,31 @@ make sure to also enable wayland.windowManager.sway.systemd
otherwise the service may never be started.
Type: string
Default: "graphical-session.target"
Example: "sway-session.target"
Declared by:
<home-manager/modules/programs/waybar.nix>
+ |
programs.wezterm.enable
Whether to enable wezterm.
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/programs/wezterm.nix>
+ |
programs.wezterm.package
The Wezterm package to install.
Type: package
Default: pkgs.wezterm
Declared by:
+ <home-manager/modules/programs/wezterm.nix>
+ |
programs.wezterm.extraConfig
Extra configuration written to
+$XDG_CONFIG_HOME/wezterm/wezterm.lua
. See
+https://wezfurlong.org/wezterm/config/files.html
+how to configure.
+
Type: strings concatenated with "\n"
Default:
'' +return {} +''
Example:
-- Your lua code / config here +local mylib = require 'mylib'; +return { + usemylib = mylib.do_fun(); + font = wezterm.font("JetBrains Mono"), + font_size = 16.0, + color_scheme = "Tomorrow Night", + hide_tab_bar_if_only_one_tab = true, + default_prog = { "zsh", "--login", "-c", "tmux attach -t dev || tmux new -s dev" }, + keys = { + {key="n", mods="SHIFT|CTRL", action="ToggleFullScreen"}, + } +} +
Declared by:
+ <home-manager/modules/programs/wezterm.nix>
|
programs.xmobar.enable
Whether to enable Xmobar, a minimalistic status bar.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/xmobar.nix>
|
programs.xmobar.package
Package providing the xmobar binary. diff --git a/tools.html b/tools.html index b2bd9da1..997baffa 100644 --- a/tools.html +++ b/tools.html @@ -1,6 +1,6 @@ -
home-manager +
home-manager — reconfigure a user environment
home-manager
{
build
|
@@ -84,7 +84,7 @@
|
--verbose
}
- ]
This command updates the user environment so that it corresponds to the
configuration specified in ~/.config/nixpkgs/home.nix
or ~/.config/nixpkgs/flake.nix
.
@@ -153,7 +153,7 @@ available for immediate garbage collection.
-
The tool accepts the options
-A attrPath
@@ -265,15 +265,15 @@
--verbose
Activates verbose output. -