nixos-configuration/security.nix
Martin Berg Alstad bd8a71e177
🔐 Yubikey
Can now log in using yubikey.

Moved icons for hyprcursor and added a manifest file.
2024-12-29 11:32:06 +01:00

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 ];
};
}