From 423b86a7f756421325e71663ada79a199bf13408 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 28 Jun 2024 16:03:26 +0200 Subject: [PATCH] disko-install: don't copy channel Since we use flakes, channels have no buisness. This is consistent with nixos-anywhere. --- disko-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disko-install b/disko-install index 1906099..0646542 100755 --- a/disko-install +++ b/disko-install @@ -240,7 +240,7 @@ main() { NIX_STATE_DIR=${mountPoint}/nix/var/nix nix-store --load-db < "${closure_info}/registration" fi - nixos-install --no-root-password --system "$nixos_system" --root "$mountPoint" + nixos-install --no-channel-copy --no-root-password --system "$nixos_system" --root "$mountPoint" } main "$@"