From c1afc5bb27db1d443a7517b29932d717dac46423 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Wed, 21 Sep 2022 13:01:39 +0200 Subject: [PATCH] constants: split up BASE_PACKAGES into kupfer-specific and base-distro packages --- constants.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/constants.py b/constants.py index 63e26b9..0cdbc32 100644 --- a/constants.py +++ b/constants.py @@ -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', ]