1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
This commit is contained in:
khaneliman 2025-05-13 14:42:05 +00:00
parent c5e72d88c3
commit 64265c1195

View file

@ -80811,44 +80811,6 @@ package</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">pkgs.mako</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/services/mako.nix" target="_top">
&lt;home-manager/modules/services/mako.nix&gt;
</a></code>
</td></tr>
</table>
</dd>
<dt>
<span class="term">
<a id="opt-services.mako.criteria"></a><a class="term" href="options.xhtml#opt-services.mako.criteria"><code class="option">services.mako.criteria</code>
</a>
</span>
</dt>
<dd>
<p>Criterias for makos config. All the details can be found in the
CRITERIA section in the official documentation.</p>
<p><span class="emphasis"><em>Type:</em></span>
attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">{ }</code></p>
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">{
&quot;actionable=true&quot; = {
anchor = &quot;top-left&quot;;
};
&quot;app-name=Google\\ Chrome&quot; = {
max-visible = &quot;5&quot;;
};
&quot;field1=value field2=value&quot; = {
text-alignment = &quot;left&quot;;
};
}
</code></pre>
<p><span class="emphasis"><em>Declared by:</em></span></p>
<table border="0" summary="Simple list" class="simplelist">
<tr><td>
@ -80865,31 +80827,37 @@ attribute set of section of an INI file (attrs of INI atom (null, bool, int, flo
</span>
</dt>
<dd>
<p>Configuration settings for mako. All available options can be found
here: <a class="link" href="https://github.com/emersion/mako/blob/master/doc/mako.5.scd" target="_top">https://github.com/emersion/mako/blob/master/doc/mako.5.scd</a>.</p>
<p>Configuration settings for mako. Can include both global settings and sections.
All available options can be found here:
<a class="link" href="https://github.com/emersion/mako/blob/master/doc/mako.5.scd" target="_top">https://github.com/emersion/mako/blob/master/doc/mako.5.scd</a>.</p>
<p><span class="emphasis"><em>Type:</em></span>
attribute set of (INI atom (null, bool, int, float or string))</p>
attribute set of (INI atom (null, bool, int, float or string) or attribute set of (INI atom (null, bool, int, float or string)))</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">{ }</code></p>
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">&#x27;&#x27;
{
actions = &quot;true&quot;;
actions = true;
anchor = &quot;top-right&quot;;
background-color = &quot;#000000&quot;;
border-color = &quot;#FFFFFF&quot;;
border-radius = &quot;0&quot;;
default-timeout = &quot;0&quot;;
border-radius = 0;
default-timeout = 0;
font = &quot;monospace 10&quot;;
height = &quot;100&quot;;
width = &quot;300&quot;;
icons = &quot;true&quot;;
ignore-timeout = &quot;false&quot;;
height = 100;
width = 300;
icons = true;
ignore-timeout = false;
layer = &quot;top&quot;;
margin = &quot;10&quot;;
markup = &quot;true&quot;;
margin = 10;
markup = true;
# Section example
&quot;actionable=true&quot; = {
anchor = &quot;top-left&quot;;
};
}
&#x27;&#x27;
</code></pre>