aboutsummaryrefslogtreecommitdiff
path: root/tests/modules/programs/bash (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tests: improve test purityRobert Helgesson2020-04-242-3/+1
| | | | | | | | | Before the XDG variables would be set from the user's environment, if available. This would break some tests. With this change the tests should be fully deterministic. Fixes #1190
* tests: reduce number of downloadsRobert Helgesson2019-10-262-7/+4
| | | | | | 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.
* bash: add logoutExtra optionTobias Happ2019-08-163-0/+27
|
* Fix type of various `sessionVariables` optionsRobert Helgesson2019-04-273-0/+39
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