diff --git a/options.xhtml b/options.xhtml index d8406ad38..a0f0af9d9 100644 --- a/options.xhtml +++ b/options.xhtml @@ -80811,44 +80811,6 @@ package

Default: pkgs.mako

-

Declared by:

- - -
- -<home-manager/modules/services/mako.nix> - -
- -
- - services.mako.criteria - - -
-
-

Criterias for mako’s config. All the details can be found in the -CRITERIA section in the official documentation.

- -

Type: -attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))

- -

Default: -{ }

- -

Example:

{
-  "actionable=true" = {
-    anchor = "top-left";
-  };
-  "app-name=Google\\ Chrome" = {
-    max-visible = "5";
-  };
-  "field1=value field2=value" = {
-    text-alignment = "left";
-  };
-}
-
-

Declared by:

@@ -80865,31 +80827,37 @@ attribute set of section of an INI file (attrs of INI atom (null, bool, int, flo
-

Configuration settings for mako. All available options can be found -here: https://github.com/emersion/mako/blob/master/doc/mako.5.scd.

+

Configuration settings for mako. Can include both global settings and sections. +All available options can be found here: +https://github.com/emersion/mako/blob/master/doc/mako.5.scd.

Type: -attribute set of (INI atom (null, bool, int, float or string))

+attribute set of (INI atom (null, bool, int, float or string) or attribute set of (INI atom (null, bool, int, float or string)))

Default: { }

Example:

''
   {
-    actions = "true";
+    actions = true;
     anchor = "top-right";
     background-color = "#000000";
     border-color = "#FFFFFF";
-    border-radius = "0";
-    default-timeout = "0";
+    border-radius = 0;
+    default-timeout = 0;
     font = "monospace 10";
-    height = "100";
-    width = "300";
-    icons = "true";
-    ignore-timeout = "false";
+    height = 100;
+    width = 300;
+    icons = true;
+    ignore-timeout = false;
     layer = "top";
-    margin = "10";
-    markup = "true";
+    margin = 10;
+    markup = true;
+  
+    # Section example
+    "actionable=true" = {
+      anchor = "top-left";
+    };
   }
 ''