Update main branch #1

Merged
jakalx merged 120 commits from develop into main 2024-02-05 21:51:32 +01:00
Showing only changes of commit 6c4a99eb78 - Show all commits

View file

@ -17,6 +17,11 @@ in {
homeDirectory = "/home/${myUser}";
stateVersion = "21.05";
sessionPath = [ "$HOME/.local/bin" "$HOME/.emacs.d/bin" ];
shellAliases = {
e = "emacsclient -c $@";
ls = "exa $@";
t = "exa -T $@";
};
};
# do not show home-manager notifications
@ -91,12 +96,6 @@ in {
'';
};
environment.shellAliases = {
e = "emacsclient -c $@";
ls = "exa $@";
t = "exa -T $@";
};
programs = {
bash = { enable = true; };