Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/default_profiles/minimal.py
blob: f78708e9e38b70f0b73dfd0844e6933f8d0d736e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.'))
		)