add hoardfrost

This commit is contained in:
2025-10-27 13:09:00 -06:00
parent eb1283157a
commit 4c1dcec61b
19 changed files with 979 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
{config, pkgs, ...}:
{
home = {
username = "autumn";
homeDirectory = "/home/autumn";
stateVersion = "25.11";
packages = with pkgs; [
htop
gnumake
neofetch
oh-my-zsh
];
};
xdg.configFile."starship.toml".source = ./packages/starship/starship.toml;
# programs.bash.initExtra = [
# "zsh"
# "starship init zsh"
# ];
programs.starship.enable = true;
programs.starship.enableZshIntegration = true;
programs.git = {
enable = true;
userEmail = "autumnal.musing@gmail.com";
userName = "autumn";
};
programs.zsh = {
enable = true;
antidote = {
enable = true;
plugins = [
"zsh-users/zsh-autosuggestions"
"zsh-users/zsh-syntax-highlighting"
];
useFriendlyNames = true;
};
autosuggestion = {
enable = true;
};
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
"z" = "zoxide";
};
sessionVariables ={
SERVDIR = "/srv/samba/hoardfrost/mainstore";
};
oh-my-zsh = {
enable = true;
plugins = [
"git"
"sudo"
"colored-man-pages"
"colorize"
"cp"
# "zoxide"
# "ssh-agent"
"command-not-found"
];
};
};
}