about summary refs log tree commit diff
path: root/nixos/doc/manual/configuration
diff options
context:
space:
mode:
authorAtemu <atemu.main@gmail.com>2023-04-11 12:52:27 +0200
committerAtemu <atemu.main@gmail.com>2023-04-16 10:15:13 +0200
commitf63a12f296b806a1b838d6fd8eef99fa65929649 (patch)
treebf9627db4a9a4a265dfccfef4e43338606d9c3e5 /nixos/doc/manual/configuration
parent1baab4e14a6c9d5fd0f3e6af144aeeb61e911110 (diff)
downloadnixlib-f63a12f296b806a1b838d6fd8eef99fa65929649.tar
nixlib-f63a12f296b806a1b838d6fd8eef99fa65929649.tar.gz
nixlib-f63a12f296b806a1b838d6fd8eef99fa65929649.tar.bz2
nixlib-f63a12f296b806a1b838d6fd8eef99fa65929649.tar.lz
nixlib-f63a12f296b806a1b838d6fd8eef99fa65929649.tar.xz
nixlib-f63a12f296b806a1b838d6fd8eef99fa65929649.tar.zst
nixlib-f63a12f296b806a1b838d6fd8eef99fa65929649.zip
tree-wide: buildFHSUserEnv -> buildFHSEnv
Diffstat (limited to 'nixos/doc/manual/configuration')
-rw-r--r--nixos/doc/manual/configuration/adding-custom-packages.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/doc/manual/configuration/adding-custom-packages.section.md b/nixos/doc/manual/configuration/adding-custom-packages.section.md
index 9219396722f0..89d329550613 100644
--- a/nixos/doc/manual/configuration/adding-custom-packages.section.md
+++ b/nixos/doc/manual/configuration/adding-custom-packages.section.md
@@ -94,6 +94,6 @@ environment.systemPackages = [ pkgs.appimage-run ];
 Then instead of running the AppImage "as-is", run `appimage-run foo.appimage`.
 
 To make other pre-built executables work on NixOS, you need to package them
-with Nix and special helpers like `autoPatchelfHook` or `buildFHSUserEnv`. See
+with Nix and special helpers like `autoPatchelfHook` or `buildFHSEnv`. See
 the [Nixpkgs manual](https://nixos.org/nixpkgs/manual) for details. This
 is complex and often doing a source build is easier.