about summary refs log tree commit diff
path: root/nixos/modules/programs/command-not-found
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-01-01 16:25:27 -0800
committerBernardo Meurer <bernardo@meurer.org>2021-01-01 16:29:05 -0800
commit88632b78010a8807b3d4200a29ac1c0248eabd31 (patch)
tree491da27df085c4417e618ac0616ec7cc9c8ec2da /nixos/modules/programs/command-not-found
parent014440d7105ce2be945b79dc957dd08720a9c029 (diff)
downloadnixlib-88632b78010a8807b3d4200a29ac1c0248eabd31.tar
nixlib-88632b78010a8807b3d4200a29ac1c0248eabd31.tar.gz
nixlib-88632b78010a8807b3d4200a29ac1c0248eabd31.tar.bz2
nixlib-88632b78010a8807b3d4200a29ac1c0248eabd31.tar.lz
nixlib-88632b78010a8807b3d4200a29ac1c0248eabd31.tar.xz
nixlib-88632b78010a8807b3d4200a29ac1c0248eabd31.tar.zst
nixlib-88632b78010a8807b3d4200a29ac1c0248eabd31.zip
nixos/command-not-found: don't suggest nix-env
Diffstat (limited to 'nixos/modules/programs/command-not-found')
-rw-r--r--nixos/modules/programs/command-not-found/command-not-found.pl11
1 files changed, 6 insertions, 5 deletions
diff --git a/nixos/modules/programs/command-not-found/command-not-found.pl b/nixos/modules/programs/command-not-found/command-not-found.pl
index ab7aa204653c..a48c077f53a8 100644
--- a/nixos/modules/programs/command-not-found/command-not-found.pl
+++ b/nixos/modules/programs/command-not-found/command-not-found.pl
@@ -36,16 +36,17 @@ EOF
         exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV));
     } else {
         print STDERR <<EOF;
-The program ‘$program’ is currently not installed. You can install it by typing:
-  nix-env -iA nixos.$package
+The program ‘$program’ is not in your PATH. You can make it available in a
+ephemeral shell by typing:
+  nix-shell -p $package
 EOF
     }
 } else {
     print STDERR <<EOF;
-The program ‘$program’ is currently not installed. It is provided by
-several packages. You can install it by typing one of the following:
+The program ‘$program’ is not in your PATH. It is provided by several packages.
+You can make it available in a ephemeral shell by typing one of the following:
 EOF
-    print STDERR "  nix-env -iA nixos.$_->{package}\n" foreach @$res;
+    print STDERR "  nix-shell -p $_->{package}\n" foreach @$res;
 }
 
 exit 127;