summaryrefslogtreecommitdiff
path: root/modules/programs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/programs')
-rw-r--r--modules/programs/bash.nix15
1 files changed, 2 insertions, 13 deletions
diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix
index ee13377..0e116ae 100644
--- a/modules/programs/bash.nix
+++ b/modules/programs/bash.nix
@@ -3,18 +3,7 @@
with lib;
let
-
cfg = config.programs.bash;
-
- shell = pkgs.runCommand pkgs.bashInteractive.name
- { buildInputs = [ pkgs.makeWrapper ]; }
- ''
- source $stdenv/setup
-
- mkdir -p $out/bin
- makeWrapper ${pkgs.bashInteractive}/bin/bash $out/bin/bash
- '';
-
in
{
@@ -56,8 +45,8 @@ in
"/share/bash-completion/completions"
];
- environment.loginShell = mkDefault "${shell}/bin/bash -l";
- environment.variables.SHELL = mkDefault "${shell}/bin/bash";
+ environment.loginShell = mkDefault "bash -l";
+ environment.variables.SHELL = mkDefault "${pkgs.bashInteractive}/bin/bash";
environment.etc."bashrc".text = ''
# /etc/bashrc: DO NOT EDIT -- this file has been generated automatically.