Skip to content

mikeslade/nvfconfig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My NeoVim Config for Nix

nix run .

Add to flake.nix:

{
    inputs = {
        ...
        
        nvfconfig = {
          url = "github:mikeslade/nvfconfig";
          inputs.nixpkgs.follows = "nixpkgs";
        };
    }

    outputs = inputs @ {
        nvfconfig,
        ...
    }:{
    ...
    }
}

Add to a host configuration.nix like so:

environment.systemPackages = with pkgs; [
    inputs.nvfconfig.packages.${system}.default
  ];

About

Nix Neovim Configuration

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published