nix/part/Wallpaper.nix

16 lines
390 B
Nix
Raw Normal View History

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