797c77a00a
This replaces some derivation outputs by simple strings rather than full Nix store paths. This removes the need to download the whole derivation when all we need is a static string.
26 lines
447 B
Nix
26 lines
447 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.bash = {
|
|
enable = true;
|
|
|
|
sessionVariables = {
|
|
V1 = "v1";
|
|
V2 = "v2-${config.programs.bash.sessionVariables.V1}";
|
|
};
|
|
};
|
|
|
|
home.homeDirectory = "/home/testuser";
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.profile
|
|
assertFileContent \
|
|
home-files/.profile \
|
|
${./session-variables-expected.txt}
|
|
'';
|
|
};
|
|
}
|