2024-06-30 00:20:19 +03:00
|
|
|
{ pkgs, lib, ... }: with lib; let
|
2024-07-18 21:15:49 +03:00
|
|
|
url = "https://i.imgur.com/GTrVpFh.jpeg";
|
|
|
|
sha256 = "1nn3ns14py4hf6ya50a84g0za4civd6mzg86a4z4k79sf7m23wza";
|
2024-06-25 04:04:39 +03:00
|
|
|
forceContrastText = false;
|
|
|
|
in {
|
|
|
|
options = {
|
2024-06-30 03:56:48 +03:00
|
|
|
module.wallpaper = {
|
2024-06-25 04:04:39 +03:00
|
|
|
forceContrastText = mkOption {
|
|
|
|
default = forceContrastText;
|
|
|
|
type = types.bool;
|
|
|
|
};
|
|
|
|
path = mkOption {
|
|
|
|
default = pkgs.fetchurl { inherit url sha256; };
|
|
|
|
type = types.path;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|