[home] default shell to zsh and start porting dotfiles

This commit is contained in:
Sam W 2021-12-10 19:22:20 +00:00
parent 00267260d6
commit e6e69f823e
1 changed files with 26 additions and 6 deletions

View File

@ -3,11 +3,31 @@
{ {
home.stateVersion = "22.05"; home.stateVersion = "22.05";
# Let Home Manager install and manage itself. programs = {
programs.home-manager.enable = true; home-manager.enable = true;
programs.git = { git = {
enable = true; enable = true;
userName = "Sam Willcocks"; userName = "Sam Willcocks";
userEmail = "sam@wlcx.cc"; userEmail = "sam@wlcx.cc";
aliases = {
st = "status";
co = "checkout";
d = "diff";
cim = "commit -m";
a = "add";
ap = "add -p";
};
};
fzf.enable = true;
zsh = {
enable = true;
shellAliases = {
g = "git";
};
prezto = {
enable = true;
prompt.theme = "giddie";
};
};
}; };
} }