2025-05-31 21:26:16 +02:00

15 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<meta http-equiv="content-type" content="text/html; charset=utf-8"><pre class="codeblock-buttons"><code class="hljs language-nix" data-highlighted="yes"> <span class="hljs-attr">security</span> <span class="hljs-operator">=</span> {
<span class="hljs-comment"># If enabled, pam_wallet will attempt to automatically unlock the users default KDE wallet upon login.</span>
<span class="hljs-comment"># If the user has no wallet named “kdewallet”, or the login password does not match their wallet password,</span>
<span class="hljs-comment"># KDE will prompt separately after login.</span>
<span class="hljs-attr">pam</span> <span class="hljs-operator">=</span> {
<span class="hljs-attr">services</span> <span class="hljs-operator">=</span> {
${userSettings.username} <span class="hljs-operator">=</span> {
<span class="hljs-attr">kwallet</span> <span class="hljs-operator">=</span> {
<span class="hljs-attr">enable</span> <span class="hljs-operator">=</span> <span class="hljs-literal">true</span>;
<span class="hljs-attr">package</span> <span class="hljs-operator">=</span> pkgs.kdePackages.kwallet-pam;
};
};
};
};
};</code></pre>