about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorK9002024-09-21 12:44:04 +0300
committerK9002024-09-21 16:13:36 +0300
commit1f9fc918cedc855bd106696d9b2038a0dbdcf52c (patch)
tree713b8ee40b624f808f033edb8c712edac48f2aff /nixos/doc
parent5dcbab6b74178077d22f7f716d1080d45e999439 (diff)
treewide: use pkgs.nixos-enter instead of config.system.build.nixos-enter
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/development/testing-installer.chapter.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/doc/manual/development/testing-installer.chapter.md b/nixos/doc/manual/development/testing-installer.chapter.md
index 2eaa01614920..92c759a8559a 100644
--- a/nixos/doc/manual/development/testing-installer.chapter.md
+++ b/nixos/doc/manual/development/testing-installer.chapter.md
@@ -6,13 +6,13 @@ tedious, so here is a quick way to see if the installer works properly:
 ```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
 ```