feat: add zenith specific modifications to noctalia

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