Hi, sorry for newbie nix question but i have never used an overlay before and having trouble installing this. I am using this base starter config https://github.com/Misterio77/nix-starter-configs/tree/main/standard and i have created a repo from your template. Ive tried dozens on configurations and this is the only one that managed to build. However nvim is not available afterwards. Help much appreciated.
# flake.nix
inputs = {
kickstart-nix-nvim.url = "github:doosty/kickstart-nix.nvim";
};
outputs = {
kickstart-nix-nvim,
}
# ./nixos/configuration.nix
{
inputs,
...
}: {
nixpkgs = {
overlays = [
inputs.kickstart-nix-nvim.overlays.default
];
};
environment.systemPackages = with pkgs; [
inputs.kickstart-nix-nvim
];
}
Hi, sorry for newbie nix question but i have never used an overlay before and having trouble installing this. I am using this base starter config https://github.com/Misterio77/nix-starter-configs/tree/main/standard and i have created a repo from your template. Ive tried dozens on configurations and this is the only one that managed to build. However nvim is not available afterwards. Help much appreciated.