From 544059b01f30d7d00939b27b82bb5bd4a974d45a Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Mon, 5 Oct 2020 11:46:50 +0200 Subject: [PATCH] nixos/installer: drop the extra nixUnstable in nixos-install The only nix version available in the installer should be the version configure in the module system. If someone needs `nixUnstable` in their `nixos-install` they should probably set the module option and not just add it to the closure. --- nixos/modules/installer/tools/tools.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix index e1e1b47aafc..666a1eff0e6 100644 --- a/nixos/modules/installer/tools/tools.nix +++ b/nixos/modules/installer/tools/tools.nix @@ -23,7 +23,6 @@ let inherit (pkgs) runtimeShell; nix = config.nix.package.out; path = makeBinPath [ - pkgs.nixUnstable pkgs.jq nixos-enter ];