This commit is contained in:
Rasyidan Akbar F. 2025-09-26 15:50:15 +07:00
commit bcbd699c4c
11 changed files with 786 additions and 124 deletions

View file

@ -0,0 +1,12 @@
{ inputs, pkgs, ... }:
let
system = pkgs.stdenv.hostPlatform.system;
lazyvim = inputs."nvim-bundle".packages.${system}.neovim;
in {
programs.neovim = {
enable = true;
package = lazyvim;
withNodeJs = true;
withPython3 = true;
};
}