🔐 Yubikey

Can now log in using yubikey.

Moved icons for hyprcursor and added a manifest file.
This commit is contained in:
2024-12-29 11:32:06 +01:00
parent 6d6331f4b4
commit bd8a71e177
47 changed files with 29 additions and 11 deletions

17
security.nix Normal file
View File

@ -0,0 +1,17 @@
{ 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 ];
};
}