WLUMA: was peaking out cpu usgage via dbus?!?

This commit is contained in:
Jurn Wubben 2025-07-27 23:11:24 +02:00
parent df6139c3bc
commit f79aa0d5d6
2 changed files with 0 additions and 32 deletions

View file

@ -2,7 +2,6 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./virt.nix ./virt.nix
./wluma.nix
]; ];
programs.appimage.enable = true; programs.appimage.enable = true;

View file

@ -1,31 +0,0 @@
{
hardware.sensor.iio.enable = true; # brightness sensor
home-manager.users.jsw.services.wluma = {
enable = true;
settings = {
als.iio = {
path = "/sys/bus/iio/devices";
thresholds = {
"0" = "night";
"10" = "dark";
"100" = "normal";
"20" = "dim";
"200" = "bright";
"500" = "outdoors";
};
};
output.backlight = [
{
capturer = "none";
name = "eDP-1";
path = "/sys/class/backlight/amdgpu_bl1";
}
{
capturer = "none";
name = "keyboard";
path = "/sys/bus/platform/devices/cros-keyboard-leds.5.auto/leds/chromeos::kbd_backlight";
}
];
};
};
}