mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
21 lines
323 B
Nix
21 lines
323 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
homeCfg = config.home;
|
||
|
|
||
|
in
|
||
|
|
||
|
{
|
||
|
options = {};
|
||
|
|
||
|
config = mkIf (homeCfg.sessionVariableSetter == "pam") {
|
||
|
home.file.".pam_environment".text =
|
||
|
concatStringsSep "\n" (
|
||
|
mapAttrsToList (n: v: "${n} OVERRIDE=${v}") homeCfg.sessionVariables
|
||
|
) + "\n";
|
||
|
};
|
||
|
}
|