mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
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.
28 lines
530 B
Nix
28 lines
530 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.zsh = {
|
|
enable = true;
|
|
|
|
sessionVariables = {
|
|
V1 = "v1";
|
|
V2 = "v2-${config.programs.zsh.sessionVariables.V1}";
|
|
};
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
zsh = pkgs.writeScriptBin "dummy-zsh" "";
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.zshrc
|
|
assertFileRegex home-files/.zshrc 'export V1="v1"'
|
|
assertFileRegex home-files/.zshrc 'export V2="v2-v1"'
|
|
'';
|
|
};
|
|
}
|