aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-12-06 10:07:36 +0100
committerKarel Kočí <cynerd@email.cz>2022-12-06 10:07:36 +0100
commite202177b9f94d7ced568bd7b81d6639d6f806006 (patch)
treed7a90fbc831a47f5310db19a1a7380d731a94cb0
parent03707e9d0175bc19e062a0ca4d0b71f5aa9a9f62 (diff)
downloadnixos-personal-e202177b9f94d7ced568bd7b81d6639d6f806006.tar.gz
nixos-personal-e202177b9f94d7ced568bd7b81d6639d6f806006.tar.bz2
nixos-personal-e202177b9f94d7ced568bd7b81d6639d6f806006.zip
install.sh: do not check signatures when copying
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 823a9f5..f0cc619 100755
--- a/install.sh
+++ b/install.sh
@@ -40,7 +40,7 @@ if [ -f "$src/flake.nix" ]; then
# Build in system when running from sources
result="$(nix build --no-link --print-out-paths \
"$flake#nixosConfigurations.$hostname.$toplevel")"
- nix copy --to "$root" "$result"
+ nix copy --no-check-sigs --to "$root" "$result"
else
result="$(nix build --no-link --print-out-paths \
"$flake#nixosConfigurations.$hostname.$toplevel" \