summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/bash
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-10-14 21:19:07 +0200
committerDaiderd Jordan <daiderd@gmail.com>2017-10-14 21:19:07 +0200
commitb00a3fc6fd82834114771f2115a2b032f0ebfe29 (patch)
tree89fc00fe728afb6ecee621b600aa5fa4b41bac28 /nixos/modules/programs/bash
parent0f01f8b882627b063f00722a2a8985fcfe6a82cf (diff)
nixos: inline set-environment for bash and zsh
Diffstat (limited to 'nixos/modules/programs/bash')
-rw-r--r--nixos/modules/programs/bash/bash.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix
index e23849d350b4..26b00fb389e1 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -123,7 +123,7 @@ in
programs.bash = {
shellInit = ''
- . ${config.system.build.setEnvironment}
+ ${config.system.build.setEnvironment.text}
${cfge.shellInit}
'';