diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2020-10-25 16:32:55 +0100 |
|---|---|---|
| committer | Daiderd Jordan <daiderd@gmail.com> | 2020-10-25 16:37:02 +0100 |
| commit | 079db5db5bfe3565db104e8cac492feab5cf7889 (patch) | |
| tree | 3b51ae0c696e4c4c2e37c709e5de49f83f30a8de /modules/programs | |
| parent | 1804b8ecd2dcd822fdd6185aeb84fb4c2a5064c6 (diff) | |
don't set SHELL automatically based on programs.<shell>.enable
Diffstat (limited to 'modules/programs')
| -rw-r--r-- | modules/programs/bash/default.nix | 3 | ||||
| -rw-r--r-- | modules/programs/zsh/default.nix | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/modules/programs/bash/default.nix b/modules/programs/bash/default.nix index fb93b79..6ebd923 100644 --- a/modules/programs/bash/default.nix +++ b/modules/programs/bash/default.nix @@ -45,9 +45,6 @@ in "/share/bash-completion/completions" ]; - 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. # This file is read for interactive shells. diff --git a/modules/programs/zsh/default.nix b/modules/programs/zsh/default.nix index 64436e2..14100d8 100644 --- a/modules/programs/zsh/default.nix +++ b/modules/programs/zsh/default.nix @@ -105,9 +105,6 @@ in environment.pathsToLink = [ "/share/zsh" ]; - environment.loginShell = "zsh -l"; - environment.variables.SHELL = "${pkgs.zsh}/bin/zsh"; - environment.etc."zshenv".text = '' # /etc/zshenv: DO NOT EDIT -- this file has been generated automatically. # This file is read for all shells. |
