diff --git a/options.xhtml b/options.xhtml index 55700210d..352db08ba 100644 --- a/options.xhtml +++ b/options.xhtml @@ -62707,6 +62707,96 @@ string

+
+ + programs.satty.enable + + +
+
+

Whether to enable Satty - Modern Screenshot Annotation.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The satty package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.satty

+ +

Declared by:

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

Configuration for Satty written to $XDG_CONFIG_HOME/satty/config.toml.

See the Satty documentation +for available options.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  general = {
+    fullscreen = true;
+    corner-roundness = 12;
+    initial-tool = "brush";
+    output-filename = "/tmp/test-%Y-%m-%d_%H:%M:%S.png";
+  };
+  color-palette = {
+    palette = [ "#00ffff" "#a52a2a" "#dc143c" "#ff1493" "#ffd700" "#008000" ];
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/satty.nix> + +
+
programs.sbt.enable