treewide: use pkgs.nixos-enter instead of config.system.build.nixos-enter

K900 1f9fc918 5dcbab6b

+2 -2
nixos/doc/manual/development/testing-installer.chapter.md
···
```ShellSession
# mount -t tmpfs none /mnt
# nixos-generate-config --root /mnt
-
$ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-install
+
$ nix-build '<nixpkgs>' -A nixos-install
# ./result/bin/nixos-install
```
To start a login shell in the new NixOS installation in `/mnt`:
```ShellSession
-
$ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-enter
+
$ nix-build '<nixpkgs>' -A nixos-enter
# ./result/bin/nixos-enter
```
+1 -1
nixos/lib/make-disk-image.nix
···
e2fsprogs
lkl
config.system.build.nixos-install
-
config.system.build.nixos-enter
+
nixos-enter
nix
systemdMinimal
]
+1 -1
nixos/lib/make-multi-disk-zfs-image.nix
···
tools = lib.makeBinPath (
with pkgs; [
-
config.system.build.nixos-enter
+
nixos-enter
config.system.build.nixos-install
dosfstools
e2fsprogs
+1 -1
nixos/lib/make-single-disk-zfs-image.nix
···
tools = lib.makeBinPath (
with pkgs; [
-
config.system.build.nixos-enter
+
nixos-enter
config.system.build.nixos-install
dosfstools
e2fsprogs