nix/part/Wallpaper.nix

16 lines
396 B
Nix
Raw Normal View History

{ pkgs, ... }: let
2024-06-23 03:23:57 +03:00
url = "https://i.imgur.com/rmRsEtO.jpeg";
sha256 = "sha256-def6O2CEjubDfKiL/d7h9IE+Q5bXa4iY093nzl0t8oA=";
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;
};
}