about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 16:50:00 +0100
committerene <ene@sils.li>2023-03-21 16:50:00 +0100
commitf9ca53de750f69b906bf1ff5c54c2d304db2e4b1 (patch)
treee5806d110f1bf6db43006aa655571fcc38bf00e7 /bootstrap
parentFix(bootstrap/install): Add 'mkfs.fat' to dependencies (diff)
downloadnixos-config-f9ca53de750f69b906bf1ff5c54c2d304db2e4b1.tar.gz
nixos-config-f9ca53de750f69b906bf1ff5c54c2d304db2e4b1.zip
Fix(bootstrap/install): Add 'free' dependency
Diffstat (limited to 'bootstrap')
-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 0d266430..118aee4c 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;};
+  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox;};
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};