archinstall/archinstall/default_profiles/minimal.py

10 lines
194 B
Python

from archinstall.default_profiles.profile import Profile, ProfileType
class MinimalProfile(Profile):
def __init__(self) -> None:
super().__init__(
'Minimal',
ProfileType.Minimal,
)