devos/profiles/develop/default.nix
2021-05-08 11:49:24 +02:00

17 lines
288 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
clang
nodejs
(python39.withPackages (pyPkgs: with pyPkgs; [ numpy ]))
libcxx
git
gdb
];
virtualisation.podman.enable = true;
virtualisation.docker.enable = true;
programs.adb.enable = true;
}