home: move foot,overlay,zsh into modules. Add backup to workdell

This commit is contained in:
fleaz 2023-09-15 15:23:59 +02:00
parent f1a0c662bd
commit 894e3eb895
6 changed files with 124 additions and 132 deletions

View file

@ -0,0 +1,19 @@
{
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" "fzf" ];
theme = "kolo";
};
history = {
share = false; # every terminal has it's own history
size = 10000;
};
shellAliases = {
"dl" = "ls -lhtr --color=always ~/Downloads | tail -n 10"; # Show the 10 newest Downloads
"buzzer" = "ssh -i Nextcloud/Privat/id_door door@door.w17.io buzzer";
};
};
}