flake.nix 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. description = "Neovim configuration";
  3. inputs = {
  4. nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
  5. flake-utils.url = "github:numtide/flake-utils";
  6. };
  7. outputs = { self, nixpkgs, flake-utils }:
  8. flake-utils.lib.eachDefaultSystem (system:
  9. let
  10. pkgs = import nixpkgs {
  11. inherit system;
  12. overlays = [(final: prev: {
  13. treesitter = prev.treesitter.override {
  14. extraGrammars = [
  15. (final.fetchFromGitHub {
  16. owner = "ckafi";
  17. repo = "tree-sitter-elvish";
  18. rev = "f32711e31e987fd5c2c002f3daba02f25c68672f";
  19. hash = "sha256-/3npcIfTH8w5ekLTb//ZCTxuSGhOXkUBaCq3WWcK2J4=";
  20. })
  21. ];
  22. };
  23. node-lsp = final.callPackage ./node-lsp {};
  24. })];
  25. };
  26. in
  27. {
  28. packages.neovim = pkgs.callPackage ./neovim.nix {};
  29. packages.neovim-with-playground = pkgs.callPackage ./neovim.nix { withPlayground = true; };
  30. packages.neovim-with-luadev = pkgs.callPackage ./neovim.nix { withLuadev = true; };
  31. packages.default = self.packages.${system}.neovim;
  32. }
  33. );
  34. }