diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-12-20 21:18:49 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-12-20 21:18:49 +0530 |
| commit | 21850f81071272a84873522b74d2b677bef03ec1 (patch) | |
| tree | cac7e1e1dd9c5a64ea12b9db37f6012ca992cfa8 /configuration.nix | |
| parent | 5d881f3b46e5c293b4eca0cd52d483aa0dabcbf8 (diff) | |
| download | nixos-config-21850f81071272a84873522b74d2b677bef03ec1.tar.gz nixos-config-21850f81071272a84873522b74d2b677bef03ec1.zip | |
Moves nvim overlay to its dir
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/configuration.nix b/configuration.nix index 4492272..2fca5a1 100644 --- a/configuration.nix +++ b/configuration.nix @@ -104,26 +104,7 @@ in { }; # Nix config - nixpkgs.overlays = [ (self: super: { - tree-sitter-updated = super.tree-sitter.overrideAttrs(oldAttrs: { - postInstall = '' - PREFIX=$out make install; - ''; - }); - neovim-unwrapped = super.neovim-unwrapped.overrideAttrs (oldAttrs: rec { - name = "neovim-nightly"; - version = "0.5-nightly"; - src = self.fetchFromGitHub { - owner = "neovim"; - repo = "neovim"; - rev = "nightly"; - sha256 = "0vpjdd32lgzyh85gyazqpms8vmaad6px3zx2svdxhvcdxgschqz9"; - }; - - nativeBuildInputs = with self.pkgs; [ unzip cmake pkgconfig gettext tree-sitter-updated ]; - }); - })]; - + nixpkgs.overlays = [ (import ./external/nvim/neovim.nix) ]; # Packages environment.systemPackages = with pkgs; [ @@ -142,6 +123,7 @@ in { w3m xorg.xrandr xorg.xmodmap + # qutebrowser mpv sxiv |
