diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2017-05-13 15:24:13 +0200 |
|---|---|---|
| committer | Daiderd Jordan <daiderd@gmail.com> | 2017-05-13 15:24:13 +0200 |
| commit | 6b1e73adb1804eda21fed2bdf936391974236843 (patch) | |
| tree | 4413e65781b0386ecdf4f8d15af90bc600202ae1 /modules/programs | |
| parent | 1c30a6ab2d1c587195c9c6b6aced7d427d90386c (diff) | |
zsh: use explicit source instead of .
Diffstat (limited to 'modules/programs')
| -rw-r--r-- | modules/programs/zsh/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/programs/zsh/default.nix b/modules/programs/zsh/default.nix index 101313a..8eec449 100644 --- a/modules/programs/zsh/default.nix +++ b/modules/programs/zsh/default.nix @@ -135,7 +135,7 @@ in # Read system-wide modifications. if test -f /etc/zshenv.local; then - . /etc/zshenv.local + source /etc/zshenv.local fi ''; @@ -153,7 +153,7 @@ in # Read system-wide modifications. if test -f /etc/zprofile.local; then - . /etc/zprofile.local + source /etc/zprofile.local fi ''; @@ -201,7 +201,7 @@ in # Read system-wide modifications. if test -f /etc/zshrc.local; then - . /etc/zshrc.local + source /etc/zshrc.local fi ''; |
