14 lines
227 B
Nix
14 lines
227 B
Nix
{
|
|
flake.modules.nixvim.custom =
|
|
{ pkgs, ... }:
|
|
{
|
|
extraPackages = with pkgs; [ gnumake ];
|
|
|
|
keymaps = [
|
|
{
|
|
action = "<cmd>make<CR>";
|
|
key = "<leader>r";
|
|
}
|
|
];
|
|
};
|
|
}
|