diff --git a/options.xhtml b/options.xhtml index a25f27dc2..61166fe4b 100644 --- a/options.xhtml +++ b/options.xhtml @@ -61448,6 +61448,130 @@ Hypridle configuration value

+
+ + services.hyprpaper.enable + + +
+
+

Whether to enable Hyprpaper, Hyprland’s wallpaper daemon.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprpaper.nix> + +
+
+
+ + services.hyprpaper.package + + +
+
+

The hyprpaper package to use.

+ +

Type: +package

+ +

Default: +pkgs.hyprpaper

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprpaper.nix> + +
+
+
+ + services.hyprpaper.importantPrefixes + + +
+
+

List of prefix of attributes to source at the top of the config.

+ +

Type: +list of string

+ +

Default:

[
+  "$"
+]
+
+ +

Example:

[
+  "$"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprpaper.nix> + +
+
+
+ + services.hyprpaper.settings + + +
+
+

hyprpaper configuration written in Nix. Entries with the same key +should be written as lists. Variables’ and colors’ names should be +quoted. See https://wiki.hyprland.org/Hypr-Ecosystem/hyprpaper/ for more examples.

+ +

Type: +Hyprpaper configuration value

+ +

Default: +{ }

+ +

Example:

{
+  ipc = "on";
+  splash = false;
+  splash_offset = 2.0;
+
+  preload =
+    [ "/share/wallpapers/buttons.png" "/share/wallpapers/cat_pacman.png" ];
+
+  wallpaper = [
+    "DP-3,/share/wallpapers/buttons.png"
+    "DP-1,/share/wallpapers/cat_pacman.png"
+  ];
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/hyprpaper.nix> + +
+
services.imapnotify.enable