I need help activating my custom nixvim configuration, precisely in this part of the manual, what else should i add or do so that when i type $ nvim
on the terminal my configuration shows up?
im using my personal flake that adds the input to my nixvim flake in the following module just as in the manual home module:
{ config, inputs, ...}
{
config.home.packages = with pkgs; [
inputs.nixvim-wrapped.packages.${system}.default
];
}
i add the file to my home-manager configuration and activate using home-manager switch --flake .#user
with the termial on the flake dir.
also testing the nixvim flake dir with nix run .
opens up my configuration without problems, so what really missing is adding it to my home manager or nixos
after doing so nvim
remains unchanged, what else i need to do so that this works?