15 lines
1.2 KiB
Plaintext
15 lines
1.2 KiB
Plaintext
<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 user’s 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> |