From daaa7b0ca912953310ec7813ab810fe122d9d485 Mon Sep 17 00:00:00 2001 From: faretek1 <107722825+faretek1@users.noreply.github.com> Date: Wed, 1 Apr 2026 19:28:49 +0000 Subject: [PATCH 1/2] docs: typo neovim -> my-neovim When I tried this code I was getting an error `attribute 'neovim' missing`. When i changed it to `my-neovim` (from the other code above), it worked. --- docs/manual/installation/standalone/nixos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/installation/standalone/nixos.md b/docs/manual/installation/standalone/nixos.md index d5c48c66..e9837a4c 100644 --- a/docs/manual/installation/standalone/nixos.md +++ b/docs/manual/installation/standalone/nixos.md @@ -52,7 +52,7 @@ the default theme enabled. You may use other options inside `config.vim` in # 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]; + environment.systemPackages = [self.packages.${pkgs.stdenv.system}.my-neovim]; }) ]; # ... From 903c0d3a733cd2f1806c18e9cec228a6fbca3693 Mon Sep 17 00:00:00 2001 From: faretek1 <107722825+faretek1@users.noreply.github.com> Date: Thu, 2 Apr 2026 09:57:59 +0100 Subject: [PATCH 2/2] fix: use pkgs.stdenv.hostPlatform.system `pkgs.stdenv.system` is deprecated Co-authored-by: raf --- docs/manual/installation/standalone/nixos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/installation/standalone/nixos.md b/docs/manual/installation/standalone/nixos.md index e9837a4c..cd0002bd 100644 --- a/docs/manual/installation/standalone/nixos.md +++ b/docs/manual/installation/standalone/nixos.md @@ -52,7 +52,7 @@ the default theme enabled. You may use other options inside `config.vim` in # 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}.my-neovim]; + environment.systemPackages = [self.packages.${pkgs.stdenv.hostPlatform.system}.my-neovim]; }) ]; # ...