mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 00:58:16 +00:00
16 lines
295 B
Nix
16 lines
295 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
in {
|
|
systemd.services.keyleds = {
|
|
description = "Logitech Keyboard animation for Linux — G410, G513, G610, G810, G910, GPro";
|
|
wantedBy = ["multi-user.target"];
|
|
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.keyleds}/bin/set-leds.sh";
|
|
};
|
|
};
|
|
}
|