diff --git a/roles/home/common.nix b/roles/home/common.nix index 49cf2a4..d4da7e0 100644 --- a/roles/home/common.nix +++ b/roles/home/common.nix @@ -1,4 +1,4 @@ -{ config, pkgs, unstable, ... }: +{ config, pkgs, ... }: { imports = [ ./zsh.nix ./git.nix ]; @@ -15,7 +15,6 @@ programs.neovim = { enable = true; - package = unstable.neovim-unwrapped; extraPackages = with pkgs; [ nodePackages.prettier nodePackages.pyright @@ -185,7 +184,7 @@ viAlias = true; vimAlias = true; - plugins = with unstable.vimPlugins; [ + plugins = with pkgs.vimPlugins; [ vim-nix molokai vim-airline @@ -202,7 +201,7 @@ vim-vsnip nvim-cmp cmp-nvim-lsp - (nvim-treesitter.withPlugins (_: unstable.tree-sitter.allGrammars)) + (nvim-treesitter.withPlugins (_: pkgs.tree-sitter.allGrammars)) nvim-treesitter-textobjects ]; };