feat: adjust nushell

This commit is contained in:
Ryan Yin
2024-06-15 11:23:56 +08:00
parent 4e4eb9a003
commit 095b092e08
7 changed files with 45 additions and 11 deletions

View File

@@ -2,6 +2,7 @@
config,
lib,
pkgs,
pkgs-unstable,
...
}:
##########################################################################
@@ -80,7 +81,7 @@ in {
programs.zsh.enable = true;
environment.shells = [
pkgs.zsh
pkgs.nushellFull # my custom shell
pkgs-unstable.nushell # my custom shell
];
# homebrew need to be installed manually, see https://brew.sh
@@ -103,7 +104,7 @@ in {
Wechat = 836500024;
QQ = 451108668;
WeCom = 1189898970; # Wechat for Work
TecentMetting = 1484048379;
TecentMeeting = 1484048379;
QQMusic = 595615424;
};
@@ -164,7 +165,7 @@ in {
# Misc
"shadowsocksx-ng" # proxy tool
"iina" # video player
"raycast" # (HotKey: alt/option + space)search, caculate and run scripts(with many plugins)
"raycast" # (HotKey: alt/option + space)search, calculate and run scripts(with many plugins)
"stats" # beautiful system status monitor in menu bar
# "reaper" # audio editor
"sonic-pi" # music programming

View File

@@ -2,12 +2,13 @@
config,
lib,
pkgs,
pkgs-unstable,
...
}: {
# add user's shell into /etc/shells
environment.shells = with pkgs; [
bashInteractive
nushellFull
pkgs-unstable.nushell
];
# set user's default shell system-wide
users.defaultUserShell = pkgs.bashInteractive;