This commit is contained in:
caem 2025-01-25 19:53:50 +01:00
parent 4f4bd5c462
commit ca00371fea
Signed by: caem
GPG key ID: 69A830D03203405F
6 changed files with 62 additions and 1 deletions

View file

@ -0,0 +1,5 @@
{ ... }:
{
}

View file

@ -12,6 +12,8 @@
background-opacity = 0.85;
scrollback-limit = literally_a_billion_million;
theme = "Tomorrow Night Burns";
window-padding-x = 4;
window-padding-y = 4;
};
};
}

View file

@ -0,0 +1,17 @@
{ ... }:
{
programs.git = {
enable = true;
userName = "caem";
userEmail = "me@caem.dev";
signing = {
signByDefault = true;
key = "E50FC66B5062070DC462661C69A830D03203405F";
};
extraConfig = {
pull.rebase = true;
init.defaultBranch = "master";
};
};
}