23 lines
606 B
Nix
23 lines
606 B
Nix
{
|
|
programs.distrobox = {
|
|
enable = true;
|
|
containers."qt-distrobox" = {
|
|
image = "debian:12.2";
|
|
exported_apps = "qtcreator";
|
|
enableSystemdUnit = false; # fails in creating and does not recreate. Do distrobox-assemble create --replace --file ~/.config/distrobox/containers.ini instead
|
|
additional_packages = [
|
|
"qtcreator"
|
|
"qt6-base-dev"
|
|
"qt6-wayland"
|
|
"qt6-tools-dev-tools"
|
|
"qt6-tools-dev"
|
|
"qt6-serialbus-dev"
|
|
"qt6-websockets-dev"
|
|
"libgl1-mesa-dev"
|
|
"build-essential"
|
|
"cmake"
|
|
];
|
|
};
|
|
};
|
|
}
|