From c9133fc96a02ce27b02527cdec2e81445f4bf4ea Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Thu, 19 Sep 2024 21:21:20 -0300 Subject: [PATCH] docs(neovim): point to the new repository and new module name --- modules/home-manager/programs/neovim/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/home-manager/programs/neovim/README.md b/modules/home-manager/programs/neovim/README.md index 739ce42..7c567f9 100644 --- a/modules/home-manager/programs/neovim/README.md +++ b/modules/home-manager/programs/neovim/README.md @@ -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 ]; } ```