devos/profiles/develop/default.nix

19 lines
302 B
Nix
Raw Normal View History

2021-04-06 20:59:09 +02:00
{ pkgs, ... }:
2021-04-06 13:37:40 +02:00
{
environment.systemPackages = with pkgs; [
2021-04-06 20:59:09 +02:00
clang
nodejs
2021-04-16 11:03:02 +02:00
(python39.withPackages (pyPkgs: with pyPkgs; [ numpy ]))
2021-04-06 20:59:09 +02:00
libcxx
git
2021-05-30 19:49:46 +02:00
man-pages
2021-04-10 00:33:34 +02:00
gdb
2021-04-06 13:37:40 +02:00
];
2021-04-28 11:16:17 +02:00
virtualisation.podman.enable = true;
virtualisation.docker.enable = true;
2021-04-06 13:37:40 +02:00
programs.adb.enable = true;
}