constants: split up BASE_PACKAGES into kupfer-specific and base-distro packages

This commit is contained in:
InsanePrawn 2022-09-21 13:01:39 +02:00
parent 8b504142de
commit c1afc5bb27

View file

@ -22,9 +22,12 @@ BOOT_STRATEGIES: dict[str, str] = {
'bq-paella': FASTBOOT,
}
BASE_PACKAGES: list[str] = [
'base',
BASE_LOCAL_PACKAGES: list[str] = [
'base-kupfer',
]
BASE_PACKAGES: list[str] = BASE_LOCAL_PACKAGES + [
'base',
'nano',
'vim',
]