mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-04 16:11:06 +01:00
deploy: 3cb08dd360
This commit is contained in:
parent
986b8433e5
commit
ef83b2b3aa
1 changed files with 186 additions and 0 deletions
186
options.xhtml
186
options.xhtml
|
|
@ -55933,6 +55933,192 @@ attribute set of string</p>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
</table>
|
</table>
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<span class="term">
|
||||||
|
<a id="opt-programs.nvchecker.enable"></a><a class="term" href="options.xhtml#opt-programs.nvchecker.enable"><code class="option">programs.nvchecker.enable</code>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>Whether to enable nvchecker.</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Type:</em></span>
|
||||||
|
boolean</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Default:</em></span>
|
||||||
|
<code class="literal">false</code></p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Example:</em></span>
|
||||||
|
<code class="literal">true</code></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/programs/nvchecker.nix" target="_top">
|
||||||
|
<home-manager/modules/programs/nvchecker.nix>
|
||||||
|
</a></code>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<span class="term">
|
||||||
|
<a id="opt-programs.nvchecker.package"></a><a class="term" href="options.xhtml#opt-programs.nvchecker.package"><code class="option">programs.nvchecker.package</code>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>The nvchecker package to use.</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Type:</em></span>
|
||||||
|
null or package</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Default:</em></span>
|
||||||
|
<code class="literal">pkgs.nvchecker</code></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/programs/nvchecker.nix" target="_top">
|
||||||
|
<home-manager/modules/programs/nvchecker.nix>
|
||||||
|
</a></code>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<span class="term">
|
||||||
|
<a id="opt-programs.nvchecker.settings"></a><a class="term" href="options.xhtml#opt-programs.nvchecker.settings"><code class="option">programs.nvchecker.settings</code>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>Configuration written to
|
||||||
|
<code class="filename">$HOME/Library/Application Support/nvchecker/nvchecker.toml</code> (on Darwin) or
|
||||||
|
<code class="filename">$XDG_CONFIG_HOME/nvchecker/nvchecker.toml</code> (otherwise).
|
||||||
|
See <a class="link" href="https://nvchecker.readthedocs.io/en/stable/usage.html#configuration-files" target="_top">https://nvchecker.readthedocs.io/en/stable/usage.html#configuration-files</a>
|
||||||
|
for the full list of options.</p><p>Environment variables and <code class="literal">~</code> are expanded,
|
||||||
|
and relative paths are relative to
|
||||||
|
<code class="filename">${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/</code> (on Darwin)
|
||||||
|
or <code class="filename">${config.xdg.configHome}/nvchecker/</code> (otherwise).</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Type:</em></span>
|
||||||
|
TOML value</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Default:</em></span></p><pre><code class="programlisting">__config__ = {
|
||||||
|
oldver = "old_ver.json";
|
||||||
|
newver = "new_ver.json";
|
||||||
|
};
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">{
|
||||||
|
__config__ = {
|
||||||
|
oldver = "my_custom_oldver.json";
|
||||||
|
newver = "~/seperately_placed_newver.json";
|
||||||
|
keyfile = "keyfile.toml";
|
||||||
|
};
|
||||||
|
|
||||||
|
nvchecker = {
|
||||||
|
source = "github";
|
||||||
|
github = "lilydjwg/nvchecker";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
</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/programs/nvchecker.nix" target="_top">
|
||||||
|
<home-manager/modules/programs/nvchecker.nix>
|
||||||
|
</a></code>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<span class="term">
|
||||||
|
<a id="opt-programs.nvchecker.settings.__config__"></a><a class="term" href="options.xhtml#opt-programs.nvchecker.settings.__config__"><code class="option">programs.nvchecker.settings.__config__</code>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>See <a class="link" href="https://nvchecker.readthedocs.io/en/stable/usage.html#configuration-files" target="_top">https://nvchecker.readthedocs.io/en/stable/usage.html#configuration-files</a>.</p><p>Environment variables and <code class="literal">~</code> are expanded,
|
||||||
|
and relative paths are relative to
|
||||||
|
<code class="filename">${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/</code> (on Darwin)
|
||||||
|
or <code class="filename">${config.xdg.configHome}/nvchecker/</code> (otherwise).</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Type:</em></span>
|
||||||
|
TOML value</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Default:</em></span></p><pre><code class="programlisting">{
|
||||||
|
oldver = "old_ver.json";
|
||||||
|
newver = "new_ver.json";
|
||||||
|
};
|
||||||
|
|
||||||
|
</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/programs/nvchecker.nix" target="_top">
|
||||||
|
<home-manager/modules/programs/nvchecker.nix>
|
||||||
|
</a></code>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<span class="term">
|
||||||
|
<a id="opt-programs.nvchecker.settings.__config__.newver"></a><a class="term" href="options.xhtml#opt-programs.nvchecker.settings.__config__.newver"><code class="option">programs.nvchecker.settings.__config__.newver</code>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>The file to store ‘new’ (i.e. available) versions in.</p><p>Environment variables and <code class="literal">~</code> are expanded,
|
||||||
|
and relative paths are relative to
|
||||||
|
<code class="filename">${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/</code> (on Darwin)
|
||||||
|
or <code class="filename">${config.xdg.configHome}/nvchecker/</code> (otherwise).</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Type:</em></span>
|
||||||
|
path</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Default:</em></span>
|
||||||
|
<code class="literal">"new_ver.json"</code></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/programs/nvchecker.nix" target="_top">
|
||||||
|
<home-manager/modules/programs/nvchecker.nix>
|
||||||
|
</a></code>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
<dt>
|
||||||
|
<span class="term">
|
||||||
|
<a id="opt-programs.nvchecker.settings.__config__.oldver"></a><a class="term" href="options.xhtml#opt-programs.nvchecker.settings.__config__.oldver"><code class="option">programs.nvchecker.settings.__config__.oldver</code>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>The file to store ‘old’ (i.e. installed) version information in.</p><p>Environment variables and <code class="literal">~</code> are expanded,
|
||||||
|
and relative paths are relative to
|
||||||
|
<code class="filename">${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/</code> (on Darwin)
|
||||||
|
or <code class="filename">${config.xdg.configHome}/nvchecker/</code> (otherwise).</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Type:</em></span>
|
||||||
|
path</p>
|
||||||
|
|
||||||
|
<p><span class="emphasis"><em>Default:</em></span>
|
||||||
|
<code class="literal">"old_ver.json"</code></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/programs/nvchecker.nix" target="_top">
|
||||||
|
<home-manager/modules/programs/nvchecker.nix>
|
||||||
|
</a></code>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
<dt>
|
<dt>
|
||||||
<span class="term">
|
<span class="term">
|
||||||
<a id="opt-programs.nyxt.enable"></a><a class="term" href="options.xhtml#opt-programs.nyxt.enable"><code class="option">programs.nyxt.enable</code>
|
<a id="opt-programs.nyxt.enable"></a><a class="term" href="options.xhtml#opt-programs.nyxt.enable"><code class="option">programs.nyxt.enable</code>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue