diff options
author | EuAndreh <eu@euandre.org> | 2019-06-01 18:38:33 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-01 18:39:02 -0300 |
commit | 8213d7f4b6e96f860da36b226cc41ba0d741da8e (patch) | |
tree | 94fde1f4b0dd829db48d75f4964abec7d62676f9 /public | |
parent | Shutdown instead of rebooting after install.sh runs (diff) | |
download | dotfiles-8213d7f4b6e96f860da36b226cc41ba0d741da8e.tar.gz dotfiles-8213d7f4b6e96f860da36b226cc41ba0d741da8e.tar.xz |
Add dosfstools to install.sh nix-shell declaration
The dosfstools derivation includes the mkfs.vfat program used inside install.sh.
Diffstat (limited to 'public')
-rwxr-xr-x | public/nixos/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/nixos/install.sh b/public/nixos/install.sh index 2fb995f..16fbef9 100755 --- a/public/nixos/install.sh +++ b/public/nixos/install.sh @@ -1,5 +1,5 @@ #!/usr/bin/env nix-shell -#!nix-shell --pure -i bash -p bash jq envsubst wget utillinux gptfdisk cryptsetup lvm2 +#!nix-shell --pure -i bash -p bash jq envsubst wget utillinux gptfdisk cryptsetup lvm2 dosfstools # shellcheck shell=bash set -Eeuo pipefail |