LIRC: Difference between revisions

From NixOS Wiki
imported>Misuzu
No edit summary
Klinger (talk | contribs)
article rewrite (was not true anymore)
 
Line 1: Line 1:
== LIRC Service ==
[https://www.lirc.org/ LIRC] allows to receive and send infrared signals. The lirc package is part of nixpkgs. It can be configured via options.
As of right now, no lirc service is provided by NixOS, You can start the LIRC Daemon manually like this:
<syntaxHighlight lang=console>
$ lircd --listen -n  -P /var/run/lircd.pid  -o /var/run/lirc.sock -d /dev/lirc0
</syntaxHighlight>
You can build upon this to create your own service with <code>sytemd.services</code>.
== References ==
* [https://discourse.nixos.org/t/the-correct-way-to-override-the-latest-kernel-config/533/2 Discourse Discussion]


[[Category:Applications]]
[[Category:Applications]]
[[Category:Hardware]]

Latest revision as of 21:12, 1 October 2024

LIRC allows to receive and send infrared signals. The lirc package is part of nixpkgs. It can be configured via options.