aboutsummaryrefslogtreecommitdiff
path: root/nixos/nvim.nix
blob: 28c2dc63bc8209feec2251c081e3a795bb82aa4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, unstable, ... }:
{
  environment.systemPackages = with pkgs; [
    unstable.neovim

    zip
    unzip

    xsel
    ripgrep
    tree-sitter

    luajitPackages.magick
    imagemagick
  ];
}