23 lines
293 B
Nix
23 lines
293 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs = {
|
|
yubikey-manager.enable = true;
|
|
yubikey-touch-detector.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
age-plugin-yubikey
|
|
];
|
|
|
|
services = {
|
|
yubikey-agent.enable = true;
|
|
};
|
|
|
|
security = {
|
|
rtkit.enable = true;
|
|
};
|
|
}
|