mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
deploy: a7a4158831
This commit is contained in:
@@ -49105,9 +49105,10 @@ Boolean values are deprecated; use
|
||||
|
||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting nix">{
|
||||
enable = true;
|
||||
extraArgs = {
|
||||
quiet = true;
|
||||
};
|
||||
extraArgs = [
|
||||
"--robust"
|
||||
"--quiet"
|
||||
];
|
||||
}
|
||||
</code></pre>
|
||||
|
||||
@@ -49168,16 +49169,17 @@ Otherwise you can set <code class="literal">config</code> to point
|
||||
to a custom configuration file.</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
attribute set of (string or boolean)</p>
|
||||
list of string</p>
|
||||
|
||||
<p><span class="emphasis"><em>Default:</em></span></p><pre><code class="programlisting nix">{
|
||||
robust = true;
|
||||
}
|
||||
<p><span class="emphasis"><em>Default:</em></span></p><pre><code class="programlisting nix">[
|
||||
"--robust"
|
||||
]
|
||||
</code></pre>
|
||||
|
||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting nix">{
|
||||
quiet = true;
|
||||
}
|
||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting nix">[
|
||||
"--robust"
|
||||
"--quiet"
|
||||
]
|
||||
</code></pre>
|
||||
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
|
||||
Reference in New Issue
Block a user