summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/bash
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-03-08 21:07:15 +0100
committerGitHub <noreply@github.com>2018-03-08 21:07:15 +0100
commitdb6fb869fbf70f38de4170edf49f0e7fbabd69b3 (patch)
tree79c8b8fb58f2590a9c79bec978aec891a281071d /nixos/modules/programs/bash
parent697847bfe357e925a0b03bebb106b226e8ea573a (diff)
parentb00a3fc6fd82834114771f2115a2b032f0ebfe29 (diff)
Merge pull request #30418 from LnL7/inline-set-environment
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 1a62f04972df..c0967316c0c7 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -126,7 +126,7 @@ in
programs.bash = {
shellInit = ''
- . ${config.system.build.setEnvironment}
+ ${config.system.build.setEnvironment.text}
${cfge.shellInit}
'';