2024-04-04 14:09:16 +03:00
|
|
|
{ pkgs, ... }: let
|
2024-05-15 02:18:59 +03:00
|
|
|
url = "https://pixeldrain.com/api/file/ppeeEr4d";
|
|
|
|
sha256 = "sha256-CeKigHd9R6Q4axalcWjHySuOj1RuY68niJ4qoQai4rM=";
|
|
|
|
|
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.
|
|
|
|
forceWhiteText = true;
|
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;
|
|
|
|
};
|
|
|
|
}
|