diff --git a/options.xhtml b/options.xhtml index ef289a854..3a2ab9f8e 100644 --- a/options.xhtml +++ b/options.xhtml @@ -50951,6 +50951,97 @@ TOML value

+
+ + programs.swayimg.enable + + +
+
+

Whether to enable swayimg.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The swayimg package to install

+ +

Type: +package

+ +

Default: +pkgs.swayimg

+ +

Declared by:

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

Configuration written to +$XDG_CONFIG_HOME/swayimg/config. See https://github.com/artemsen/swayimg/blob/master/extra/swayimgrc for a list of available options.

+ +

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

+ +

Default: +{ }

+ +

Example:

{
+  viewer = {
+    window = "#10000010";
+    scale = "fill";
+  };
+  "info.viewer" = {
+    top_left = "+name,+format";
+  };
+  "keys.viewer" = {
+    "Shift+r" = "rand_file";
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/swayimg.nix> + +
+
programs.swaylock.enable