diff --git a/modules/features/noctalia.nix b/modules/features/noctalia.nix index ddf141c..44f0e1b 100644 --- a/modules/features/noctalia.nix +++ b/modules/features/noctalia.nix @@ -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 {