nix/part/Wallpaper.nix

16 lines
397 B
Nix
Raw Normal View History

{ 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;
in {
2024-05-14 22:42:12 +03:00
inherit forceWhiteText;
path = pkgs.fetchurl {
url = url;
sha256 = sha256;
};
}