21 lines
478 B
Nix
21 lines
478 B
Nix
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
programs.zsh = {
|
||
enable = true;
|
||
enableCompletion = true;
|
||
autosuggestions.enable = true;
|
||
syntaxHighlighting.enable = true;
|
||
|
||
initExtra = ''
|
||
PROMPT='%F{white}%BNixOS%f%F{magenta}_%f%F{blue}persephone%f %F{black}❯%f '
|
||
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main)
|
||
|
||
# animated splash if you still want it
|
||
if [[ -n $PS1 ]]; then
|
||
~/.config/neofetch/animated-neofetch.sh 0.05
|
||
clear
|
||
fi
|
||
'';
|
||
};
|
||
} |