mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 18:34:56 +08:00
15 lines
438 B
Nix
15 lines
438 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";
|
|
init_hooks = [
|
|
"ln -s /usr/bin/distrobox-host-exec /usr/local/bin/evince"
|
|
"ln -s /usr/bin/distrobox-host-exec /usr/local/bin/latexmk"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|