remove shellhook, add nil to shell

This commit is contained in:
steveej 2025-03-29 18:15:57 +01:00
parent 3b852b7073
commit 1633f7d429

View file

@ -8,21 +8,12 @@ pkgs.mkShell {
packages = [
flake.formatter.${system}
pkgs.jq
pkgs.nil
];
# Add environment variables
env = { };
# Load custom bash code
shellHook =
# TODO(blocked/upstream): remove this once https://github.com/isbecker/treefmt-vscode/issues/3 is resolved
# (flake.inputs.nixago.lib.${system}.make {
# data = flake.formatter.${system}.settings;
# output = "treefmt.toml";
# format = "toml";
# }).shellHook
# +
''
echo $(git rev-parse --show-toplevel)
'';
shellHook = '''';
}