Nvim : Add extra gcc dep for treesitter.
This commit is contained in:
parent
fd92907a05
commit
9fb0a489df
|
@ -1,4 +1,4 @@
|
|||
{ inputs, ... }: let
|
||||
{ inputs, pkgs, ... }: let
|
||||
nvimCfg = import ./nvim/Init.nix { inputs = inputs; };
|
||||
in {
|
||||
environment = {
|
||||
|
@ -6,6 +6,9 @@ in {
|
|||
EDITOR = "nvim";
|
||||
MANPAGER = "nvim +Man!";
|
||||
};
|
||||
systemPackages = with pkgs; [
|
||||
gcc
|
||||
];
|
||||
};
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue