nix/modules/ledfix/default.nix

12 lines
281 B
Nix
Raw Normal View History

2024-08-19 21:09:17 +02:00
{ ... }:
{
systemd.services.micmute = {
description = "Set microphone mute LED to off";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "sh -c 'echo 0 | tee /sys/class/leds/thinkpad::micmute/brightness'";
Type = "oneshot";
};
};
}