about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/activate/default.nix2
-rw-r--r--bootstrap/install/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/activate/default.nix b/bootstrap/activate/default.nix
index 2c410f09..91df2dc8 100644
--- a/bootstrap/activate/default.nix
+++ b/bootstrap/activate/default.nix
@@ -4,7 +4,7 @@
   shell-library,
   ...
 }: let
-  dependencies = with pkgs; [jq dash];
+  dependencies = with pkgs; [jq dash gawk curl];
   name = "activate";
   script = ./activate.sh;
   lib = import ../../lib {inherit pkgs shell-library;};
diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix
index 68580d41..ae9bfad5 100644
--- a/bootstrap/install/default.nix
+++ b/bootstrap/install/default.nix
@@ -4,7 +4,7 @@
   shell-library,
   ...
 }: let
-  dependencies = with pkgs; [jq dash curl grep];
+  dependencies = with pkgs; [jq dash curl gawk];
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};