The question was not about to see if you have gained your BTW badge of honor or not. I am sure you have.
I just wondered about the reason of your surprise over having discover installed in your system which is pulled in among other packages, dependencies of plasma-meta
package.
The ArchWiki page on archinstall is clear about the ways archinstall differs from the regular installation:
archinstall offers different defaults than the regular installation process.
Profiles
archinstall includes profiles, or sets of packages and pre-configured options which can be installed next to the base system.
Warning: Shipped profiles are specific to archinstall and not supported by package maintainers. Users are advised to check the details of each profile before using it.
And the Plasma profile mentions clearly “plasma-meta” among the packages to be installed:
plasma.py
from typing import List, Optional, Any, TYPE_CHECKING
from archinstall.default_profiles.profile import ProfileType, GreeterType
from archinstall.default_profiles.xorg import XorgProfile
if TYPE_CHECKING:
_: Any
class PlasmaProfile(XorgProfile):
def __init__(self):
super().__init__('KDE Plasma', ProfileType.DesktopEnv, description='')
@property
def packages(self) -> List[str]:
return [
"plasma-meta",
"konsole",
"kwrite",
"dolphin",
"ark",
"plasma-workspace",
"egl-wayland"
]
@property
def default_greeter_type(self) -> Optional[GreeterType]:
return GreeterType.Sddm
https://gitlab.archlinux.org/archlinux/archinstall/-/blob/master/archinstall/default_profiles/desktops/plasma.py
So it shouldn’t come as a surprise and why I couldn’t understand your further remark
In all honestly, one has to admit that EnOS’ makes quite a few choices on behalf of the users both when it comes to the packages installed and other tweaks and automation which places it at a distance from the “regular” Arch installation referred to in the ArchWiki article.
Then what should be called Vanilla and what not is another story.