summaryrefslogtreecommitdiff
path: root/nixos/modules/features/dev-tools/default.nix
blob: fa19d8a35ac021049d5dafc8d3fb013b1ae760cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    black
    cargo
    clang
    clippy
    gcc
    git
    gnumake
    nodejs
    pyright
    python3
    rust-analyzer
    rustc
    tree-sitter
  ];
}