mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
15 lines
331 B
Nix
15 lines
331 B
Nix
{ config, ... }: {
|
|
config = {
|
|
pam.sessionVariables = {
|
|
V1 = "v1";
|
|
V2 = "v2-${config.pam.sessionVariables.V1}";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.pam_environment
|
|
assertFileContent \
|
|
home-files/.pam_environment \
|
|
${./session-variables-expected.txt}
|
|
'';
|
|
};
|
|
}
|