From 8049aa886bbed06a8af3065fc056cc924e33b358 Mon Sep 17 00:00:00 2001 From: Jeremy Fleischman Date: Wed, 5 Mar 2025 10:41:50 -0800 Subject: [PATCH] Unfortunately, the `--raw` option doesn't exist It does exist in `nix eval`, but the nix command is still experimental. --- modules/nixos-wiki/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos-wiki/default.nix b/modules/nixos-wiki/default.nix index b276e3d..c722549 100644 --- a/modules/nixos-wiki/default.nix +++ b/modules/nixos-wiki/default.nix @@ -69,7 +69,7 @@ in extraConfig = '' # docs https://www.mediawiki.org/wiki/Extension:QuestyCaptcha $wgCaptchaQuestions = [ - "What is the output of this command: nix-instantiate --raw --eval --expr 'builtins.hashString \"sha256\" \"NixOS wiki\"' ?" => "62e65110a5a6fa4f08256f7d9ee3461412babb37dc0955531b79dcf9732c9c91" + "What is the output of this command: nix-instantiate --eval --expr 'builtins.hashString \"sha256\" \"NixOS wiki\"' ?" => "\"62e65110a5a6fa4f08256f7d9ee3461412babb37dc0955531b79dcf9732c9c91\"" ]; wfLoadExtensions([ 'ConfirmEdit/QuestyCaptcha' ]);