nix/option/Wallpaper.nix

22 lines
515 B
Nix

# Download the wallpaper here.
{
pkgs,
lib,
...
}: let
url = "https://i.imgur.com/4W9pdaz.jpeg";
sha256 = "sha256-p7GmF/0LN6LcilH6rgJh2/d/c+4FQ3tXhhb9S+LEVjA=";
forceContrastText = false;
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;
};
};
}