Don't use nixpkgs-master anymore

This commit is contained in:
Charlotte Van Petegem 2020-02-22 16:11:48 +01:00
parent 664af405d0
commit 9d82e6dcdd
5 changed files with 16 additions and 25 deletions

View file

@ -1,10 +1,9 @@
let
pkgs = import <nixpkgs> {};
nixpkgs-master = import <nixpkgs-master> {};
baseVimConfig = import ../programs/neovim/base.nix { inherit pkgs; };
in
pkgs.mkShell {
buildInputs = with nixpkgs-master; [
buildInputs = with pkgs; [
(neovim.override {
configure = {
customRC = baseVimConfig.customRC;