mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
deploy: 26e34a99e4
This commit is contained in:
177
options.xhtml
177
options.xhtml
@@ -139889,8 +139889,8 @@ boolean</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -139913,8 +139913,8 @@ null or package</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -139939,8 +139939,8 @@ one of “hyprlang”, “lua”</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -139975,8 +139975,109 @@ strings concatenated with “\n”</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
<dt>
|
||||
<span class="term">
|
||||
<a id="opt-wayland.windowManager.hyprland.extraLuaFiles"></a><a class="term" href="options.xhtml#opt-wayland.windowManager.hyprland.extraLuaFiles"><code class="option">wayland.windowManager.hyprland.extraLuaFiles</code>
|
||||
</a>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<p>Extra Lua files written under <code class="filename">$XDG_CONFIG_HOME/hypr</code>.</p><p>Attribute names are used as Lua module names and converted to file
|
||||
names with a <code class="filename">.lua</code> suffix added when missing. For example,
|
||||
<code class="literal">bindings</code> writes
|
||||
<code class="filename">$XDG_CONFIG_HOME/hypr/bindings.lua</code>, while
|
||||
<code class="literal">lib.helpers</code> writes <code class="filename">$XDG_CONFIG_HOME/hypr/lib/helpers.lua</code>.</p><p>Files with <code class="option">autoLoad</code> enabled generate <code class="literal">require(...)</code> calls in
|
||||
<code class="filename">$XDG_CONFIG_HOME/hypr/hyprland.lua</code> after adding the Hypr config
|
||||
directory to Lua’s <code class="literal">package.path</code>. Use <code class="option">autoLoad = false</code> for
|
||||
helper modules that are imported by other Lua files.</p><p>This option only affects generated files when
|
||||
<code class="option">wayland.windowManager.hyprland.configType</code> is <code class="literal">"lua"</code>.</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
attribute set of ((submodule) or (absolute path or strings concatenated with “\n”) convertible to it)</p>
|
||||
|
||||
<p><span class="emphasis"><em>Default:</em></span></p><pre><code class="programlisting nix">{ }
|
||||
</code></pre>
|
||||
|
||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting nix">{
|
||||
"00-vars" = '\'
|
||||
local M = {}
|
||||
M.mainMod = "SUPER"
|
||||
return M
|
||||
'\';
|
||||
|
||||
"ui.bindings" = {
|
||||
content = ./bindings.lua;
|
||||
autoLoad = true;
|
||||
};
|
||||
|
||||
"lib.helpers" = {
|
||||
content = ./helpers.lua;
|
||||
autoLoad = false;
|
||||
};
|
||||
|
||||
"from-path.lua" = ./startup.lua;
|
||||
}
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
<dt>
|
||||
<span class="term">
|
||||
<a id="opt-wayland.windowManager.hyprland.extraLuaFiles._name_.autoLoad"></a><a class="term" href="options.xhtml#opt-wayland.windowManager.hyprland.extraLuaFiles._name_.autoLoad"><code class="option">wayland.windowManager.hyprland.extraLuaFiles.<name>.autoLoad</code>
|
||||
</a>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<p>Whether to generate a <code class="literal">require(...)</code> call for this file in
|
||||
<code class="filename">$XDG_CONFIG_HOME/hypr/hyprland.lua</code>.</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
boolean</p>
|
||||
|
||||
<p><span class="emphasis"><em>Default:</em></span></p><pre><code class="programlisting nix">true
|
||||
</code></pre>
|
||||
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
<dt>
|
||||
<span class="term">
|
||||
<a id="opt-wayland.windowManager.hyprland.extraLuaFiles._name_.content"></a><a class="term" href="options.xhtml#opt-wayland.windowManager.hyprland.extraLuaFiles._name_.content"><code class="option">wayland.windowManager.hyprland.extraLuaFiles.<name>.content</code>
|
||||
</a>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<p>Lua file content, set either by specifying a path to a Lua
|
||||
file or by providing a multi-line Lua string.</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
absolute path or strings concatenated with “\n”</p>
|
||||
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -139999,8 +140100,8 @@ null or package <span class="emphasis"><em>(read only)</em></span></p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140024,8 +140125,8 @@ null or package <span class="emphasis"><em>(read only)</em></span></p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140060,8 +140161,8 @@ list of string</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140085,8 +140186,8 @@ list of (package or absolute path)</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140109,8 +140210,8 @@ null or package</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140204,8 +140305,8 @@ Hyprland configuration value</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140232,8 +140333,8 @@ boolean</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140280,8 +140381,8 @@ attribute set of (submodule)</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140307,8 +140408,8 @@ string</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140358,8 +140459,8 @@ Hyprland binds</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140388,8 +140489,8 @@ boolean</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140416,8 +140517,8 @@ boolean</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140443,8 +140544,8 @@ list of string</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140479,8 +140580,8 @@ list of string</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
@@ -140507,8 +140608,8 @@ boolean</p>
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland.nix" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland.nix>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/services/window-managers/hyprland" target="_top">
|
||||
<home-manager/modules/services/window-managers/hyprland>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user