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 {
buildInputs = with pkgs; [
dive
fd
k9s
kube3d
kubie
hugo
];
packages = [
(pkgs.writeShellScriptBin "evalnix" ''
# check nix parsing
fd --extension nix --exec nix-instantiate --parse --quiet {} >/dev/null
# check nix parsing (e.g., in CI)
${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"
'';
};
});