diff options
| -rw-r--r-- | home/apps/caelestia/settings.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/apps/caelestia/settings.nix b/home/apps/caelestia/settings.nix index 9168d86..5c8a418 100644 --- a/home/apps/caelestia/settings.nix +++ b/home/apps/caelestia/settings.nix @@ -127,11 +127,11 @@ in { showOnHover = true; status = { showAudio = false; - showBattery = true; - showBluetooth = true; + showBattery = config.battery.enable; + showBluetooth = config.bluetooth.enable; showKbLayout = false; showMicrophone = false; - showNetwork = true; + showNetwork = config.network.enable; showLockStatus = false; }; tray = { @@ -175,7 +175,7 @@ in { # On screen display osd = { enabled = true; - enableBrightness = true; + enableBrightness = config.battery.enable; enableMicrophone = false; hideDelay = 2000; }; |