diff options
author | ene <ene@sils.li> | 2023-03-21 16:50:00 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 16:50:00 +0100 |
commit | f9ca53de750f69b906bf1ff5c54c2d304db2e4b1 (patch) | |
tree | e5806d110f1bf6db43006aa655571fcc38bf00e7 /bootstrap | |
parent | Fix(bootstrap/install): Add 'mkfs.fat' to dependencies (diff) | |
download | nixos-config-f9ca53de750f69b906bf1ff5c54c2d304db2e4b1.tar.gz nixos-config-f9ca53de750f69b906bf1ff5c54c2d304db2e4b1.zip |
Fix(bootstrap/install): Add 'free' dependency
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/install/default.nix | 2 |
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;}; |