nix-conf/home/user/programs.nix
2024-12-24 10:44:37 +08:00

11 lines
221 B
Nix

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