10 lines
187 B
Nix
10 lines
187 B
Nix
{ nixpkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [
|
|
(import (builtins.fetchTarball {
|
|
url = https://github.com/nix-community/neovim-nightly-overlay/archive/master.tar.gz;
|
|
}))
|
|
];
|
|
}
|