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