Can now log in using yubikey. Moved icons for hyprcursor and added a manifest file.
18 lines
281 B
Nix
18 lines
281 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
yubioath-flutter
|
|
];
|
|
|
|
security.pam.services = {
|
|
login.u2fAuth = true;
|
|
sudo.u2fAuth = true;
|
|
};
|
|
|
|
services = {
|
|
pcscd.enable = true;
|
|
udev.packages = with pkgs; [ yubikey-personalization ];
|
|
};
|
|
}
|