From 12e7174057b559cc1db65124bd364c9677b9f6ab Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sun, 16 Jun 2024 19:29:27 +0200 Subject: [PATCH] Packages.elm: add missing newline to 'nix-env' tab (#799) --- 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 e352892..8b3678c 100644 --- a/frontend/src/Page/Packages.elm +++ b/frontend/src/Page/Packages.elm @@ -654,7 +654,7 @@ viewResultItem nixosChannels channel showInstallDetails show item = [ pre [ class "code-block shell-command" ] [ text "# without flakes:\nnix-env -iA nixpkgs." , strong [] [ text item.source.attr_name ] - , text "# with flakes:\nnix profile install nixpkgs#" + , text "\n# with flakes:\nnix profile install nixpkgs#" , strong [] [ text item.source.attr_name ] ] ]