nixos/plasma6: allow null password for screen lock

This was fixed and we missed it, I think?
This commit is contained in:
K900 2024-06-23 14:01:49 +03:00
parent 03f1d515cd
commit cc5ee2d621

View File

@ -264,9 +264,12 @@ in {
enable = true;
package = kdePackages.kwallet-pam;
};
kde.kwallet = {
enable = true;
package = kdePackages.kwallet-pam;
kde = {
allowNullPassword = true;
kwallet = {
enable = true;
package = kdePackages.kwallet-pam;
};
};
kde-fingerprint = lib.mkIf config.services.fprintd.enable { fprintAuth = true; };
kde-smartcard = lib.mkIf config.security.pam.p11.enable { p11Auth = true; };