diff options
author | EuAndreh <eu@euandre.org> | 2019-06-01 19:12:33 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-01 19:12:33 -0300 |
commit | f5bce0c2ad5a15cf8e4be858ee920f84cc0bdb1e (patch) | |
tree | 9491ca6455b52f0070e66c49d607c7cf7f32bf0d /public/nixos | |
parent | TODOs.org (diff) | |
download | dotfiles-f5bce0c2ad5a15cf8e4be858ee920f84cc0bdb1e.tar.gz dotfiles-f5bce0c2ad5a15cf8e4be858ee920f84cc0bdb1e.tar.xz |
Add mkpasswd to install.sh nix-shell declaration
Also don't run install.sh with the --pure flag, as it needs to run commands such
as nixos-generate-config.
Diffstat (limited to 'public/nixos')
-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 ca18a01..b0329e4 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 dosfstools e2fsprogs +#!nix-shell -i bash -p bash jq envsubst wget utillinux gptfdisk cryptsetup lvm2 dosfstools e2fsprogs mkpasswd # shellcheck shell=bash set -Eeuo pipefail |