diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix index 8cfe3f990ad..9d33e26c495 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} ''; };