Hi Martin,
Martin Becze <address@hidden> writes:
For a user to access a Yubikey an udev rule needs to be added. This can
be done by using the udev rules found in libu2f-host package. To use the
rules the following should be added to your config.scm
(use-modules (gnu packages security-token))
...
(define %modified-desktop-services
(modify-services %minimal-desktop-services
(udev-service-type
config =>
(udev-configuration (inherit config)
(rules (cons libu2f-host
(udev-configuration-rules
config)))))))
Reference
https://guix.gnu.org/manual/en/html_node/Base-Services.html
---
Of course there is more to say about yubikey but this is all I needed
for now.
Did you write something for the cookbook? I've also set up a YubiKey
using Guix - I actually packaged some of the things like libu2f-host -
and would be happy to review / add to whatever you've written.