nix-conf/home/user/programs.nix
2024-12-23 13:42:40 +08:00

12 lines
221 B
Nix

{ pkgs, ... }:
{
programs = {
neovim = {
enable = true;
withNodeJs = true;
withPython3 = true;
extraLuaPackages = ps: [ ps.magick ];
extraPackages = [ pkgs.imagemagick ];
};
};
}