diff options
author | Karel Kočí <cynerd@email.cz> | 2022-12-06 10:07:36 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-12-06 10:07:36 +0100 |
commit | e202177b9f94d7ced568bd7b81d6639d6f806006 (patch) | |
tree | d7a90fbc831a47f5310db19a1a7380d731a94cb0 | |
parent | 03707e9d0175bc19e062a0ca4d0b71f5aa9a9f62 (diff) | |
download | nixos-personal-e202177b9f94d7ced568bd7b81d6639d6f806006.tar.gz nixos-personal-e202177b9f94d7ced568bd7b81d6639d6f806006.tar.bz2 nixos-personal-e202177b9f94d7ced568bd7b81d6639d6f806006.zip |
install.sh: do not check signatures when copying
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" \ |