use neovim nightly

This commit is contained in:
LavaDesu 2021-07-05 10:40:52 +07:00
parent 9e6fd04749
commit 5ce07a047a
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 82 additions and 1 deletions

View file

@ -2,9 +2,11 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";
secrets.url = "github:LavaDesu/flakes-secrets";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
neovim-nightly.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: with inputs;
@ -27,7 +29,8 @@
(path: nixpkgs.lib.hasSuffix ".nix" path) # Checks file extension
(getPaths ./overlays)
)
) ++ [(self: super: customPackages super)];
) ++ [(self: super: customPackages super)]
++ [inputs.neovim-nightly.overlay];
revCount = "299942";
base = { config, ... }: {