From 6bcca599e250fd56801e1ab9d5f412260bb77c40 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sat, 13 Jun 2026 20:36:46 +0100 Subject: [PATCH] devshell: Fix `json2nix` warning --- devshell/commands.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devshell/commands.nix b/devshell/commands.nix index 7a261c6..b708660 100644 --- a/devshell/commands.nix +++ b/devshell/commands.nix @@ -52,7 +52,7 @@ in name = "json2nix"; category = "utilities"; help = "Convert JSON to formatted Nix"; - command = "nix eval --impure --expr 'builtins.fromJSON (builtins.readFile /dev/stdin)' | ${pkgs.nixfmt}/bin/nixfmt"; + command = "nix eval --impure --expr 'builtins.fromJSON (builtins.readFile /dev/stdin)' | ${pkgs.nixfmt}/bin/nixfmt -"; } {