feat: NixOS | enable yubikey auth and login

This commit is contained in:
2025-02-14 21:17:56 +05:00
parent 5314208b92
commit bba65699c6

View File

@@ -1,5 +1,17 @@
{...}: {
security = {
rtkit.enable = true;
pam = {
u2f = {
enable = true;
settings = {
cue = true;
};
};
services = {
sudo.u2fAuth = true;
login.u2fAuth = true;
};
};
};
}