fix(cockpit): replace udisks2 with cockpit-storaged

The cockpit package was split upstream into seperate app components.
udisks2 is a low-level D-Bus service (a dependency), whereas
cockpit-storaged is the actual Cockpit UI component for storage
management. Installing the app component is the correct approach
as documented on the Arch Wiki and the cockpit package page.
This commit is contained in:
suraj kumar 2026-08-02 14:37:08 +05:30
parent 6a244eb2c2
commit f2d78e5993
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class CockpitProfile(Profile):
@override
def packages(self) -> list[str]:
# NOTE: udisks2 and packagekit are raw dependenices, not cockpit app components
return ['cockpit', 'udisks2', 'packagekit']
return ['cockpit', 'cockpit-storaged', 'packagekit']
@property
@override