aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/zsh/session-variables.nix
blob: ca903619d68410a8e423edc8ef980275aa4e5287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ 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"'
    '';
  };
}