18 lines
391 B
Nix
Raw Normal View History

2024-12-26 19:10:27 +03:00
{ pkgs, pkgs-stable, ... }: {
home.packages = with pkgs-stable; [
2024-10-02 22:10:08 +03:00
vscode
jetbrains.pycharm-community
jetbrains.idea-community
android-studio
2024-12-26 19:10:27 +03:00
] ++ ( with pkgs; [
2024-10-02 22:10:08 +03:00
cmake
gnumake
nodejs
(python3.withPackages (ps: with ps; [ requests bpython ]))
python311Packages.pip
rocmPackages.llvm.clang-tools-extra
rocmPackages.llvm.clang
ncurses
2024-12-26 19:10:27 +03:00
]);
2024-10-02 22:10:08 +03:00
}