From 8092a6f188a1b82606ed3fabdd2c78cada780a15 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 30 Jul 2025 14:07:50 +0300 Subject: [PATCH] docs: fix codeblock closing in standalone installation guide Signed-off-by: NotAShelf Change-Id: I6a6a6964ea02c71459a2be778c9e91897f6e49ae --- docs/manual/installation/standalone/nixos.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/manual/installation/standalone/nixos.md b/docs/manual/installation/standalone/nixos.md index 267d15b7..65dc9205 100644 --- a/docs/manual/installation/standalone/nixos.md +++ b/docs/manual/installation/standalone/nixos.md @@ -49,7 +49,8 @@ the default theme enabled. You may use other options inside `config.vim` in # ... modules = [ # This will make wrapped neovim available in your system packages - # Can also move this to another config file if you pass inputs/self around with specialArgs + # Can also move this to another config file if you pass your own + # inputs/self around with specialArgs ({pkgs, ...}: { environment.systemPackages = [self.packages.${pkgs.stdenv.system}.neovim]; }) @@ -58,4 +59,5 @@ the default theme enabled. You may use other options inside `config.vim` in }; }; }; -}``` +} +```