nix/part/Wallpaper.nix

16 lines
396 B
Nix
Raw Normal View History

{ pkgs, ... }: let
2024-06-23 05:23:22 +03:00
url = "https://i.imgur.com/0RldJsX.jpeg";
sha256 = "sha256-hbbUz9+m/bLahDiflAoio6+4H0DHfxlbh92cWSjE4R4=";
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-06-23 01:29:43 +03:00
forceContrastText = false;
in {
2024-06-23 01:02:11 +03:00
inherit forceContrastText;
2024-05-14 22:42:12 +03:00
path = pkgs.fetchurl {
url = url;
sha256 = sha256;
};
}