From ddb2fd6b3de5ecdb4b2991d18b828454fb7171f7 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sun, 12 Oct 2025 03:12:44 +0000 Subject: [PATCH] deploy: 2fffa806e7eed2d8948f478523c7c6aca90566b6 --- options.xhtml | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) diff --git a/options.xhtml b/options.xhtml index 0f69cae65..a12a3c2f6 100644 --- a/options.xhtml +++ b/options.xhtml @@ -18674,6 +18674,100 @@ string or absolute path

+
+ + programs.amp.enable + + +
+
+

Whether to enable amp.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/amp.nix> + +
+
+
+ + programs.amp.package + + +
+
+

The amp package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.amp

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/amp.nix> + +
+
+
+ + programs.amp.settings + + +
+
+

Configuration settings for amp. All the details can be +found here: https://amp.rs/docs/configuration/.

+ +

Type: +YAML 1.1 value

+ +

Default: +{ }

+ +

Example:

{
+  line_length_guide = [
+    80
+    100
+  ];
+  line_wrapping = true;
+  open_mode = {
+    exclusions = [
+      "**/.git"
+      "**/.svn"
+    ];
+  };
+  soft_tabs = true;
+  tab_width = 2;
+  theme = "solarized_dark";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/amp.nix> + +
+
programs.animdl.enable