Compare commits

...

3 commits

Author SHA1 Message Date
raf
d3304af3d5
Merge pull request #1495 from faretek1/patch-1
Some checks failed
Set up binary cache / cachix (default) (push) Has been cancelled
Set up binary cache / cachix (maximal) (push) Has been cancelled
Set up binary cache / cachix (nix) (push) Has been cancelled
Treewide Checks / Validate flake (push) Has been cancelled
Treewide Checks / Check formatting (push) Has been cancelled
Treewide Checks / Check source tree for typos (push) Has been cancelled
Treewide Checks / Validate documentation builds (push) Has been cancelled
Treewide Checks / Validate documentation builds-1 (push) Has been cancelled
Treewide Checks / Validate documentation builds-2 (push) Has been cancelled
Treewide Checks / Validate documentation builds-3 (push) Has been cancelled
Treewide Checks / Validate hyperlinks in documentation sources (push) Has been cancelled
Treewide Checks / Validate Editorconfig conformance (push) Has been cancelled
Build and deploy documentation / Check latest commit (push) Has been cancelled
Build and deploy documentation / publish (push) Has been cancelled
docs: deprecated or inconsistent names
2026-04-02 12:27:45 +03:00
faretek1
903c0d3a73
fix: use pkgs.stdenv.hostPlatform.system
`pkgs.stdenv.system` is deprecated

Co-authored-by: raf <raf@notashelf.dev>
2026-04-02 09:57:59 +01:00
faretek1
daaa7b0ca9
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.
2026-04-01 19:28:49 +00:00

View file

@ -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.hostPlatform.system}.my-neovim];
})
];
# ...