aboutsummaryrefslogtreecommitdiff
path: root/tests/modules/programs/zsh (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Apply `nixfmt` on many filesRobert Helgesson2020-02-024-20/+8
|
* zsh: fix history.path issuesNikita Uvarov2019-11-055-0/+90
| | | | | | | | | - Default value is set to static '$HOME/.zsh_history' -- dotDir is not prepended anymore - $HOME is not prepended to the option value - Ensure history path directory exists Fixes #886, replaces #427.
* tests: reduce number of downloadsRobert Helgesson2019-10-261-1/+7
| | | | | | 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.
* Fix type of various `sessionVariables` optionsRobert Helgesson2019-04-272-0/+25
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