this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

noctalia: fix battery

Aria 5887db89 1753ad9a

+13 -2
+13 -2
nix/modules/services/ariade/noctalia.nix
··· 1 - { config, pkgs, ... }: 1 + { 2 + config, 3 + pkgs, 4 + lib, 5 + ... 6 + }: 7 + let 8 + inherit (lib) mkIf; 9 + cfg = config.services.ariade; 10 + in 2 11 { 3 12 environment.systemPackages = [ 4 13 pkgs.noctalia-shell 5 14 pkgs.quickshell 6 15 pkgs.wl-clipboard 7 16 ]; 17 + 18 + services.upower.enable = mkIf cfg.hasBattery true; 8 19 9 20 programs.noctalia-shell = { 10 21 enable = true; ··· 156 167 hideIfNotDetected = true; 157 168 id = "Battery"; 158 169 showNoctaliaPerformance = false; 159 - showPowerProfiles = false; 170 + showPowerProfiles = true; 160 171 } 161 172 { 162 173 displayMode = "onhover";