about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 16:48:46 +0100
committerene <ene@sils.li>2023-03-21 16:48:46 +0100
commit2c0a94777fe8387321920ddd14333abe8916e788 (patch)
tree63140f6743aafb9abdaab920e9c344b7435d7225 /bootstrap
parentFix(bootstrap/install): Update to new shell-library ver (diff)
downloadnixos-config-2c0a94777fe8387321920ddd14333abe8916e788.tar.gz
nixos-config-2c0a94777fe8387321920ddd14333abe8916e788.zip
Fix(bootstrap/install): Add 'mkfs.fat' to dependencies
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 ffba2b13..0d266430 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;};
+  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools;};
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};