pam: enclose session variable values in quotes

(cherry picked from commit 848b8b983e)
This commit is contained in:
Olli Helenius 2019-03-05 18:53:48 +02:00 committed by Robert Helgesson
parent 3c2823e3cd
commit fa19c18343
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -30,7 +30,7 @@ in
config = mkIf (vars != {}) { config = mkIf (vars != {}) {
home.file.".pam_environment".text = home.file.".pam_environment".text =
concatStringsSep "\n" ( concatStringsSep "\n" (
mapAttrsToList (n: v: "${n} OVERRIDE=${toString v}") vars mapAttrsToList (n: v: "${n} OVERRIDE=\"${toString v}\"") vars
) + "\n"; ) + "\n";
}; };
} }