From cc5ee2d6214a9a41655504ecac04cf51c777a56d Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 23 Jun 2024 14:01:49 +0300 Subject: nixos/plasma6: allow null password for screen lock This was fixed and we missed it, I think? --- nixos/modules/services/desktop-managers/plasma6.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'nixos/modules') diff --git a/nixos/modules/services/desktop-managers/plasma6.nix b/nixos/modules/services/desktop-managers/plasma6.nix index d4f961254f02..796e24286f9e 100644 --- a/nixos/modules/services/desktop-managers/plasma6.nix +++ b/nixos/modules/services/desktop-managers/plasma6.nix @@ -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; }; -- cgit 1.4.1