summaryrefslogtreecommitdiff
path: root/share/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'share/common.nix')
-rw-r--r--share/common.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/share/common.nix b/share/common.nix
index c2db3d3..a027bc0 100644
--- a/share/common.nix
+++ b/share/common.nix
@@ -330,6 +330,7 @@ in
pkgs.kdePackages.neochat
nixos-install-tools
nmap
+ nushell
nvme-cli
procmail
okteta
@@ -493,12 +494,8 @@ in
enableMail = false;
};
- # use ZSH per default
- programs.zsh.enable = true;
- environment.shells = with pkgs; [ zsh ];
-
- # needed for the ZSH completion
- environment.pathsToLink = [ "/share/zsh" ];
+ # add nushell and zsh to allowed shells
+ environment.shells = with pkgs; [ nushell zsh ];
# use micro as default terminal editor
environment.variables.EDITOR = "micro";