From cf3e36a3b947f5053fa23197d145ecd5ecc4c89d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 11 Oct 2013 11:55:58 +0200 Subject: [PATCH] bash: place interactiveShellInit at the end to be able to override existing settings --- nixos/modules/programs/bash/bash.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix index 8cfe3f990adc..9d33e26c4959 100644 --- a/nixos/modules/programs/bash/bash.nix +++ b/nixos/modules/programs/bash/bash.nix @@ -127,8 +127,6 @@ in loginShellInit = cfge.loginShellInit; interactiveShellInit = '' - ${cfge.interactiveShellInit} - # Check the window size after every command. shopt -s checkwinsize @@ -138,6 +136,8 @@ in ${cfg.promptInit} ${bashCompletion} ${bashAliases} + + ${cfge.interactiveShellInit} ''; };