feat: add zenith specific modifications to noctalia

This commit is contained in:
2026-04-21 21:35:46 +02:00
parent 65f49429d5
commit 592e70cf33
+14 -2
View File
@@ -8,11 +8,23 @@ let
mkPortableSettings = mkPortableSettings =
baseSettings: baseSettings:
lib.recursiveUpdate baseSettings { lib.recursiveUpdate baseSettings {
bar.widgets.right = baseSettings.bar.widgets.right ++ [ bar.widgets.right = lib.concatMap (
widget:
if widget.id == "ControlCenter" then
[
{
id = "Network";
}
{ {
id = "Battery"; id = "Battery";
showPowerProfiles = true;
displayMode = "graphic";
} }
]; widget
]
else
[ widget ]
) baseSettings.bar.widgets.right;
}; };
in in
{ {