We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 102d24c commit 416cbcfCopy full SHA for 416cbcf
1 file changed
custom.nix
@@ -2,10 +2,12 @@
2
3
pkgs.mkShell {
4
buildInputs = [
5
- pkgs.git-filter-repo
+ pkgs.git-filter-repo # Git Filter Repo tool
6
+ pkgs.nodejs # Node.js which includes npm
7
];
8
9
shellHook = ''
- echo "git-filter-repo has been added to your environment."
10
+ npm install -g firebase-tools # Install Firebase CLI globally
11
+ echo "git-filter-repo and Firebase CLI have been added to your environment."
12
'';
-}
13
+}
0 commit comments