use neovim nightly
This commit is contained in:
parent
9e6fd04749
commit
5ce07a047a
3 changed files with 82 additions and 1 deletions
|
|
@ -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, ... }: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue