about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 16:58:58 +0100
committerene <ene@sils.li>2023-03-21 17:08:47 +0100
commit2e63f1fc53ada3791f2182382648136f29648379 (patch)
treec5a578c64137bf9c077dca3a9e8e3e0d84894f13 /bootstrap
parentFix(lib): Add 'dash' as default dependency (diff)
downloadnixos-config-2e63f1fc53ada3791f2182382648136f29648379.tar.gz
nixos-config-2e63f1fc53ada3791f2182382648136f29648379.zip
Fix(bootstrap/setup): Add all needed dependencies
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 5cb36d51..8a0f712e 100644
--- a/bootstrap/setup/default.nix
+++ b/bootstrap/setup/default.nix
@@ -4,7 +4,7 @@
   shell-library,
   ...
 }: let
-  dependencies = with pkgs; [dash gawk curl git];
+  dependencies = with pkgs; [dash gawk curl git nix gnugrep nixos-install-tools coreutils];
   name = "setup";
   script = ./setup.sh;
   lib = import ../../lib {inherit pkgs shell-library;};