mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-10 13:34:07 +08:00
11 lines
265 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|