From 6b1e73adb1804eda21fed2bdf936391974236843 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Sat, 13 May 2017 15:24:13 +0200 Subject: [PATCH] zsh: use explicit source instead of . --- modules/programs/zsh/default.nix | 6 +++--- 1 file 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 '';