From b460904a6fc6273345d5e2525dc89ec033d68be9 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Wed, 14 May 2025 19:43:53 -0700 Subject: [PATCH] doc: use hash instead of sha256 in example (#1270) Hash is preferred in nixpkgs, we should follow that here. Link: https://github.com/danth/stylix/pull/1270 --- docs/src/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/configuration.md b/docs/src/configuration.md index 76c78bdb..98b23bf0 100644 --- a/docs/src/configuration.md +++ b/docs/src/configuration.md @@ -83,7 +83,7 @@ To set a wallpaper, provide a path or an arbitrary derivation: { stylix.image = pkgs.fetchurl { url = "https://www.pixelstalk.net/wp-content/uploads/2016/05/Epic-Anime-Awesome-Wallpapers.jpg"; - sha256 = "enQo3wqhgf0FEPHj2coOCvo7DuZv+x5rL/WIo4qPI50="; + hash = "sha256-enQo3wqhgf0FEPHj2coOCvo7DuZv+x5rL/WIo4qPI50="; }; } ```