From 991a7f4fabeddf36a2b02222439f1d32c06873ec Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 9 Sep 2023 20:14:37 +0800 Subject: [PATCH] shells/nix: update devshell env --- shells/nix.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/shells/nix.nix b/shells/nix.nix index 898b0069..dae8a008 100644 --- a/shells/nix.nix +++ b/shells/nix.nix @@ -2,21 +2,25 @@ # Also, it's fun to have a file named `nix.nix`. { mkShell , lib +, deadnix , jq +, nil , nix-tree , nixfmt +, nixpkgs-hammering , nurl , rnix-hashes -, rnix-lsp }: mkShell { packages = [ + deadnix # Search for the dead. jq # It will use some JSON with its lockfile so better be ready to use this. - nixfmt # Ideally, it would be nicer if the codebase has their preferred formatter but we'll go with the most common formatter(?). - rnix-hashes # Quick utility for converting hashes. - rnix-lsp # Make your editing experience nicer with a nice language server. + nil # Language server. nix-tree # Suprisingly nice exploration tool for your packages in the store directory. + nixfmt # Ideally, it would be nicer if the codebase has their preferred formatter but we'll go with the most common formatter(?). + nixpkgs-hammering # Beat nixpkgs derivations up to shape. nurl # Nice way to catch up with some things. + rnix-hashes # Quick utility for converting hashes. ]; }