add hoardfrost
This commit is contained in:
65
home/autumn/sysconfs/hoardfrost.nix
Normal file
65
home/autumn/sysconfs/hoardfrost.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user