about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-21 13:09:08 +0100
committerene <ene@sils.li>2023-02-21 13:09:08 +0100
commit63edafacddd64cb2e7ee062d2dd925338070e08d (patch)
treef8d1acc7fd268f620c8c1dc0c7e73024bd79a157 /bootstrap
parentFix(system): Move the nixos-config to the main srv subv (diff)
downloadnixos-config-63edafacddd64cb2e7ee062d2dd925338070e08d.tar.gz
nixos-config-63edafacddd64cb2e7ee062d2dd925338070e08d.zip
Fix(bootstrap): Add dependencies for the setup script
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/setup/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/setup/default.nix b/bootstrap/setup/default.nix
index 429fe5f4..5cb36d51 100644
--- a/bootstrap/setup/default.nix
+++ b/bootstrap/setup/default.nix
@@ -4,7 +4,7 @@
   shell-library,
   ...
 }: let
-  dependencies = with pkgs; [dash];
+  dependencies = with pkgs; [dash gawk curl git];
   name = "setup";
   script = ./setup.sh;
   lib = import ../../lib {inherit pkgs shell-library;};