Skip to content

bassforce86/nix-nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nix-nvim

This is the recommended method if you are already using flakes to manage your system. To enable flakes, add this to /etc/nixos/configuration.nix

{ pkgs, lib, ... }:
{
  nix = {
    settings.experimental-features = [ "nix-command" "flakes" ];
  };
}

Now, you need to import the module. If your system is already configured using flakes, just add the nixvim input:

{
  # ...
  inputs.nixvim = {
    url = "github:bassforce86/nix-nvim";
    inputs.nixpkgs.follows = "nixpkgs";
  };
}

Optional Home Manager import

{ inputs, system, ... }:
{
    # ...
    home.packages = [ inputs.nixvim.packages.%{system}.default ];
}

About

Neovim Nix config

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages