about summary refs log tree commit diff stats
path: root/bootstrap/install
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 17:13:09 +0100
committerene <ene@sils.li>2023-03-21 17:13:09 +0100
commit7125e722349e7cc19968133c70969a6349d9fec1 (patch)
tree3eee833f989576bcb3971e3a94e00e11ba641834 /bootstrap/install
parentFix(bootstrap/setup): Update to new shell-lib version (diff)
downloadnixos-config-7125e722349e7cc19968133c70969a6349d9fec1.tar.gz
nixos-config-7125e722349e7cc19968133c70969a6349d9fec1.zip
Fix(bootstrap): Add additional dependencies
Diffstat (limited to '')
-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 118aee4c..2aeae54a 100644
--- a/bootstrap/install/default.nix
+++ b/bootstrap/install/default.nix
@@ -4,7 +4,7 @@
   shell-library,
   ...
 }: let
-  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox;};
+  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix;};
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};