From 081e731be24a0bbc7807d38c53087507a88421d8 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Mon, 1 Mar 2021 18:40:07 +0100 Subject: [PATCH] neovim: Add unzip to user environment --- users/simon/modules/neovim.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/users/simon/modules/neovim.nix b/users/simon/modules/neovim.nix index 41abcdc..6000a58 100644 --- a/users/simon/modules/neovim.nix +++ b/users/simon/modules/neovim.nix @@ -293,4 +293,8 @@ in }; home.sessionVariables.EDITOR = "nvim"; + + home.packages = with pkgs; [ + unzip # required for zip.vim + ]; }