devos/profiles/develop/default.nix
2021-08-05 19:47:41 +02:00

20 lines
341 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
clang
nodejs
(python39.withPackages (pyPkgs: with pyPkgs; [ numpy ]))
libcxx
git
man-pages
gdb
kondo # for removing unused files
];
virtualisation.podman.enable = true;
virtualisation.docker.enable = true;
programs.adb.enable = true;
}