From 85b6cbc29195ac44d74ede734e33bd57032251e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= Date: Fri, 7 Jun 2024 09:59:47 +0200 Subject: [PATCH] frontend: Suggest nix profile install for flakes installation (#757) This makes more sense than having nix build, which doesn't really install things Co-authored-by: Rok Garbas --- frontend/src/Page/Packages.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Page/Packages.elm b/frontend/src/Page/Packages.elm index b951294..abaa5de 100644 --- a/frontend/src/Page/Packages.elm +++ b/frontend/src/Page/Packages.elm @@ -718,7 +718,7 @@ viewResultItem nixosChannels channel showInstallDetails show item = ] ] [ pre [ class "code-block shell-command" ] - [ text "nix build " + [ text "nix profile install " , strong [] [ text url ] , text "#" , em [] [ text item.source.attr_name ]