Files
nix-config/services/keyleds/default.nix
Dave Gallant d2aaa3920f Add alejandra
2022-05-28 18:49:15 -04:00

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";
};
};
}