2024-11-16 04:43:59 +03:00
|
|
|
# Download the wallpaper here.
|
2024-11-04 04:37:29 +03:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2024-12-14 08:57:11 +03:00
|
|
|
url = "https://i.imgur.com/AVWdqBy.jpeg";
|
|
|
|
sha256 = "sha256-GhOHOyENrfO98zmIfYjzPioX+CyJ3eiq5nF6N/2p3Dw=";
|
2024-11-28 03:09:00 +03:00
|
|
|
forceContrastText = false;
|
2024-11-04 04:37:29 +03:00
|
|
|
in {
|
|
|
|
options.module.wallpaper = {
|
|
|
|
forceContrastText = lib.mkOption {
|
|
|
|
default = lib.warnIf forceContrastText "Wallpaper: Forced text contrast." forceContrastText;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
|
|
|
path = lib.mkOption {
|
|
|
|
default = pkgs.fetchurl { inherit url sha256; };
|
|
|
|
type = lib.types.path;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|