Compare commits

..

No commits in common. "68b9ec4a18a7821e1f1f31c82e45a5604f42171d" and "551f5c913ae01f5b3848f99601874d6df6307f63" have entirely different histories.

View file

@ -110,7 +110,7 @@
#############################################################################
programs.bash = {
enable = true;
initExtra = builtins.readFile ./dotfiles/bash_prompt;
promptInit = builtins.readFile ./dotfiles/bash_prompt;
shellAliases = {
c = "clear";
gm = "git checkout master && git pull";
@ -123,16 +123,18 @@
#############################################################################
programs.git = {
enable = true;
userName = "Leo Alho";
userEmail = "leoalho@proton.me";
config.user = {
name = "Leo Alho";
email = "leoalho@proton.me";
};
lfs.enable = true;
aliases = {
co = "checkout";
br = "branch";
c = "commit";
a = "add";
p = "push";
st = "status";
settings.alias = {
co = "checkout";
br = "branch";
c = "commit";
a = "add";
p = "push";
st = "status";
};
extraConfig = {
init.defaultBranch = "main";