2024-06-30 00:20:19 +03:00
|
|
|
{ pkgs, lib, ... }: with lib; let
|
|
|
|
url = "https://i.postimg.cc/Q82Vg4z0/7680-Doom.jpg";
|
|
|
|
sha256 = "sha256-GxPQzXlJFAl6VBhH+IoTdjwlOHMiUReu+dUdNcADN8Q=";
|
2024-06-25 04:04:39 +03:00
|
|
|
forceContrastText = false;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
module.common.wallpaper = {
|
|
|
|
forceContrastText = mkOption {
|
|
|
|
default = forceContrastText;
|
|
|
|
type = types.bool;
|
|
|
|
};
|
|
|
|
path = mkOption {
|
|
|
|
default = pkgs.fetchurl { inherit url sha256; };
|
|
|
|
type = types.path;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|