nixos: move from grml to starship

This commit is contained in:
genofire 2022-07-05 22:38:53 +02:00
parent f7bc43fce0
commit 8efe99074d
1 changed files with 7 additions and 7 deletions

View File

@ -48,7 +48,6 @@
iperf3
bmon
figlet
grml-zsh-config
tmux
neovim
xh
@ -64,20 +63,21 @@
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
# zsh
programs.starship.enable = true;
users.defaultUserShell = pkgs.zsh;
programs.zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
interactiveShellInit = ''
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
'';
promptInit = "";
# interactiveShellInit = ''
# promptInit = ''
# source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
# '';
# promptInit = "";
shellAliases = {
ip = "ip --color";
watch = "watch -c";