Unverified Commit 2fa8510f authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents 556d3d60 db80d030
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 = {