diff --git a/module/common/Nvim.nix b/module/common/Nvim.nix index 3361b41a..14a6632f 100644 --- a/module/common/Nvim.nix +++ b/module/common/Nvim.nix @@ -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;