blob: 8cceafc464afa015eaa0f8e7dcb6ba4195ce763c (
plain)
1
2
3
4
5
6
7
8
9
|
{ pkgs, ... }: {
# Turn off backlight on my G610 keyboard
systemd.services.G610DisableBacklight = {
description = "G610 disable backlight";
wantedBy = [ "multi-user.target" ];
serviceConfig.ExecStart = "${pkgs.g810-led}/bin/g610-led -a 00";
};
}
|