16 lines
359 B
Python
16 lines
359 B
Python
from typing import Any, TYPE_CHECKING
|
|
|
|
from archinstall.default_profiles.profile import Profile, ProfileType
|
|
|
|
if TYPE_CHECKING:
|
|
_: Any
|
|
|
|
|
|
class MinimalProfile(Profile):
|
|
def __init__(self):
|
|
super().__init__(
|
|
'Minimal',
|
|
ProfileType.Minimal,
|
|
description=str(_('A very basic installation that allows you to customize Arch Linux as you see fit.'))
|
|
)
|