summaryrefslogtreecommitdiff
path: root/share/common.nix
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-07-19 17:56:28 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-07-19 17:56:28 +0200
commit68d99c3696d39d534c5cf7f2aee7a424c55539d2 (patch)
tree7876e8908bdadbd732b33829727b9b384032027a /share/common.nix
parent7f2d8831c4407fddadbf33339f4baa6d4cc4ead2 (diff)
let's try nushell
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";