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