docs(neovim): point to the new repository and new module name

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-09-19 21:21:20 -03:00
parent e2d025f447
commit c9133fc96a
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF

View file

@ -19,7 +19,7 @@ First you add this repository as a flake input:
inputs.nixpkgs.follows = "nixpkgs";
};
wizardlink-neovim.url = "git+https://git.thewizard.link/wizardlink/neovim";
wizardlink.url = "git+https://git.thewizard.link/wizardlink/linuxware";
};
outputs = { home-manager, ... }@inputs: {
@ -34,11 +34,11 @@ First you add this repository as a flake input:
Then in your [Home Manager] configuration you can just import it:
```nix
{ wizardlink-neovim }:
{ wizardlink }:
{
imports = [
wizardlink-neovim.homeManagerModules.default
wizardlink.homeManagerModules.neovim
];
}
```