Skip to content

Sly-Harvey/nixvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nixvim

Screenshot

Run

nix run github:Sly-Harvey/nixvim

Install on NixOS

Add this to your flake.nix

nixvim.url = "github:Sly-Harvey/nixvim";

Then in your home-manager configuration add this

{ inputs, pkgs, ... }:

{
    home.packages = with pkgs; [
        inputs.nixvim.packages.${system}.default
    ];
}