You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/getting-started/faq.mdx
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -221,6 +221,36 @@ On some distributions (such as openSUSE), <code>/etc/pam.d/login</code> may not
221
221
If you have previously used a custom PAM configuration for fingerprint authentication or any other form of authentication, you can now remove it. Noctalia will use the system's default authentication methods as defined in <code>/etc/pam.d/login</code>.
222
222
223
223
224
+
</details>
225
+
226
+
<details>
227
+
<summary><strong>How to enable Yubikey for Noctalia Lockscreen?</strong></summary>
228
+
229
+
Noctalia lock screen pulls it's authentication info from <code>/etc/pam.d/system-login</code> this is where we will need to add our PAM info for our Yubikey
230
+
Please Note: This instruction assumes your Yubikey is already configured for this consult your distros documentation.
231
+
232
+
we're going to need to edit <code>/etc/pam.d/system-login</code>, so use whichever text editor you like. <code> sudo nvim /etc/pam.d/system-login </code> find the last instance of a line that starts with "auth" and make a new line after that
233
+
234
+
in the new line, type (or copy and paste) in the following: auth required pam_u2f.so
235
+
236
+
write and quit the file
237
+
238
+
If you want to require ONLY the yubikey to unlock your screen:
239
+
1. Open the file back up with your text editor
240
+
2. Find the line that contains: auth include system-auth
241
+
242
+
comment out the line so that it looks like: #auth include system-auth
0 commit comments