fix pkgs
This commit is contained in:
parent
c2b39aea18
commit
a8820c9c79
|
@ -1,7 +1,7 @@
|
||||||
{ inputs, outputs, lib, config, pkgs, ... }:
|
{ inputs, outputs, lib, config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.packages = with pkgs.unstable; [
|
home.packages = with pkgs; [
|
||||||
# Language servers
|
# Language servers
|
||||||
clang-tools # C, C++, Objective C/C++, OpenCL, CUDA, and RenderScript
|
clang-tools # C, C++, Objective C/C++, OpenCL, CUDA, and RenderScript
|
||||||
haskell-language-server # Haskell
|
haskell-language-server # Haskell
|
||||||
|
@ -11,8 +11,8 @@
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.unstable.neovim-unwrapped;
|
package = pkgs.neovim-unwrapped;
|
||||||
plugins = with pkgs.unstable.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
# Install all grammar packages
|
# Install all grammar packages
|
||||||
# nvim-treesitter.withAllGrammars
|
# nvim-treesitter.withAllGrammars
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue