EdenQwQ/home/programs/coding/distrobox.nix
2025-03-12 06:05:31 +00:00

11 lines
265 B
Nix

{
programs.distrobox = {
enable = true;
containers = {
python-project = {
image = "fedora:latest";
additional_packages = "python3 python3-pip git python3-numpy python3-scipy python3-matplotlib python3-pandas";
};
};
};
}