command-not-found: Use attribute name

Changed files
+3 -3
nixos
modules
programs
command-not-found
+3 -3
nixos/modules/programs/command-not-found/command-not-found.pl
···
the package ‘$package’, which I will now install for you.
EOF
;
-
exit 126 if system("nix-env", "-i", $package) == 0;
+
exit 126 if system("nix-env", "-iA", $package) == 0;
} else {
print STDERR <<EOF;
The program ‘$program’ is currently not installed. You can install it by typing:
-
nix-env -i $package
+
nix-env -iA $package
EOF
}
} else {
···
The program ‘$program’ is currently not installed. It is provided by
several packages. You can install it by typing one of the following:
EOF
-
print STDERR " nix-env -i $_->{package}\n" foreach @$res;
+
print STDERR " nix-env -iA $_->{package}\n" foreach @$res;
}
exit 127;