nixos/pam: do not define an empty supportedFilesystems list (#449291)

This commit is contained in:
Sandro
2025-10-16 22:36:24 +00:00
committed by GitHub
+1 -1
View File
@@ -2298,7 +2298,7 @@ in
++ lib.optionals config.security.pam.enableFscrypt [ pkgs.fscrypt-experimental ]
++ lib.optionals config.security.pam.u2f.enable [ pkgs.pam_u2f ];
boot.supportedFilesystems = lib.optionals config.security.pam.enableEcryptfs [ "ecryptfs" ];
boot.supportedFilesystems = lib.mkIf config.security.pam.enableEcryptfs [ "ecryptfs" ];
security.wrappers = {
unix_chkpwd = {