mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-18 08:19:38 +01:00
Unfortunately, using `attrsOf` is not possible since it results in too
eager evaluation. In particular, the
home.sessionVariables = {
FOO = "Hello";
BAR = "${config.home.sessionVariables.FOO} World!";
};
example will cause an infinite recursion.
This commit restores the option type of
- `home.sessionVariables`,
- `pam.sessionVariables`,
- `programs.bash.sessionVariables`, and
- `programs.zsh.sessionVariables`
to `attrs`. It also adds test cases for the above options to avoid
regressions.
Fixes #659
|
||
|---|---|---|
| .. | ||
| dconf.nix | ||
| fontconfig.nix | ||
| gtk.nix | ||
| lib.nix | ||
| news.nix | ||
| nixpkgs.nix | ||
| pam.nix | ||
| qt.nix | ||
| submodule-support.nix | ||
| version.nix | ||
| xdg.nix | ||