aboutsummaryrefslogtreecommitdiff
path: root/nixos/nvim.nix
blob: 1a38a86ed2ed1a1c21dda6432de06bd0ed11d60d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:
let unstable = import <nixos-unstable> { config.allowUnfree = true; };
in {
  environment.systemPackages = with pkgs; [
    unstable.neovim

    unzip
    xsel
    ripgrep
    tree-sitter

    vscode-langservers-extracted
  ];
}