use distrobox4nix

This commit is contained in:
EdenQwQ 2025-03-12 06:05:31 +00:00
parent 26124a0e4d
commit 42447b4e74
7 changed files with 30 additions and 16 deletions

View file

@ -7,5 +7,6 @@
./zed.nix
./nixvim
./R.nix
./distrobox.nix
];
}

View file

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