diff options
author | EuAndreh <eu@euandre.org> | 2019-06-01 18:25:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-01 18:25:16 -0300 |
commit | 76c0b025ad23107f32df508f5126e0065ac08ccc (patch) | |
tree | 1d7111227ee6d5b337847abf13e0a6fdbe281092 | |
parent | Add cryptsetup to install.sh nix-shell declaration (diff) | |
download | dotfiles-76c0b025ad23107f32df508f5126e0065ac08ccc.tar.gz dotfiles-76c0b025ad23107f32df508f5126e0065ac08ccc.tar.xz |
Add lvm2 to install.sh nix-shell declaration
The lvm2 derivation includes required binaries such as pvcreate, vgcreate and
lvcreate required for configuring logical volumes in the new NixOS laptop's disk.
-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 3c5f138..1d0a717 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 +#!nix-shell --pure -i bash -p bash jq envsubst wget utillinux gptfdisk cryptsetup lvm2 # shellcheck shell=bash set -Eeuo pipefail |