Version 0.1.0

This commit is contained in:
2025-11-13 14:15:48 +00:00
parent daa7360b56
commit 292b8e9372
45 changed files with 3728 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ 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
'';
};
}

View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
imports = [
./01_zshrc.nix
];
}