diff options
Diffstat (limited to 'nixos/modules/features/dev-tools')
| -rw-r--r-- | nixos/modules/features/dev-tools/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/nixos/modules/features/dev-tools/default.nix b/nixos/modules/features/dev-tools/default.nix new file mode 100644 index 0000000..2215b49 --- /dev/null +++ b/nixos/modules/features/dev-tools/default.nix @@ -0,0 +1,20 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + black + cargo + clang + clippy + gcc + git + gnumake + nodejs + pyright + python3 + rust-analyzer + rustc + tree-sitter + pkgs.wireshark + ]; +}
\ No newline at end of file |
