remove fd and hugo from devShell

This commit is contained in:
Bryton Hall 2023-07-07 23:54:14 -04:00
parent df4d8f80a1
commit 5a28ca925b

View file

@ -55,22 +55,16 @@
default = pkgs.mkShell { default = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
dive dive
fd
k9s k9s
kube3d kube3d
kubie kubie
hugo
]; ];
packages = [ packages = [
(pkgs.writeShellScriptBin "evalnix" '' (pkgs.writeShellScriptBin "evalnix" ''
# check nix parsing # check nix parsing (e.g., in CI)
fd --extension nix --exec nix-instantiate --parse --quiet {} >/dev/null ${pkgs.fd}/bin/fd --extension nix --exec nix-instantiate --parse --quiet {} >/dev/null
'') '')
]; ];
# KUBECONFIG = "kubeconfig.json";
shellHook = ''
export NODE_PATH="${pkgs.nodePackages.prettier-plugin-toml}/lib/node_modules:$NODE_PATH"
'';
}; };
}); });