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

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