about summary refs log tree commit diff stats
path: root/bootstrap/activate
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/activate
parentFeat(flake): Move the in and outputs to separate files (diff)
downloadnixos-config-f05e45d7f55117a16e44e478b494e0c1b33959db.zip
Fix(bootstrap): Record the dependencies
Diffstat (limited to 'bootstrap/activate')
-rw-r--r--bootstrap/activate/default.nix2
1 files changed, 1 insertions, 1 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;};