about summary refs log tree commit diff stats
path: root/bootstrap/install/default.nix
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-20 10:52:35 +0100
committerene <ene@sils.li>2023-02-20 10:52:35 +0100
commitf05e45d7f55117a16e44e478b494e0c1b33959db (patch)
treeb3c1c4227a9bc8a0e283b1dfb8f163a1e0c418b5 /bootstrap/install/default.nix
parentFeat(flake): Move the in and outputs to separate files (diff)
downloadnixos-config-f05e45d7f55117a16e44e478b494e0c1b33959db.zip
Fix(bootstrap): Record the dependencies
Diffstat (limited to 'bootstrap/install/default.nix')
-rw-r--r--bootstrap/install/default.nix2
1 files changed, 1 insertions, 1 deletions
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;};