2024-04-04 14:09:16 +03:00
|
|
|
{ pkgs, ... }: let
|
2024-06-09 16:09:27 +03:00
|
|
|
url = "https://i.imgur.com/EpFhNuM.jpeg";
|
|
|
|
sha256 = "sha256-j6c5+f5/KgmGzNfZnMShAXrhbAOhsiNlr0DJh+puyQU=";
|
2024-05-15 02:18:59 +03:00
|
|
|
|
2024-05-14 22:42:12 +03:00
|
|
|
# Sometimes stylix does not generate enough contrast for text.
|
|
|
|
# This setting forces white text to ensure contrast on dark backgrounds.
|
2024-05-30 16:25:20 +03:00
|
|
|
forceWhiteText = false;
|
2024-04-04 14:09:16 +03:00
|
|
|
in {
|
2024-05-14 22:42:12 +03:00
|
|
|
inherit forceWhiteText;
|
|
|
|
|
2024-04-04 14:09:16 +03:00
|
|
|
path = pkgs.fetchurl {
|
|
|
|
url = url;
|
|
|
|
sha256 = sha256;
|
|
|
|
};
|
|
|
|
}
|