diff options
author | ene <ene@sils.li> | 2023-03-21 16:48:46 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 16:48:46 +0100 |
commit | 2c0a94777fe8387321920ddd14333abe8916e788 (patch) | |
tree | 63140f6743aafb9abdaab920e9c344b7435d7225 /bootstrap | |
parent | Fix(bootstrap/install): Update to new shell-library ver (diff) | |
download | nixos-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.nix | 2 |
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;}; |