add gnumake, home-manager and git config to minimal config

This commit is contained in:
2026-06-15 12:39:59 +02:00
parent 3710d953ab
commit 484999059a
5 changed files with 12 additions and 6 deletions

View File

@ -0,0 +1,25 @@
{ ... }:
{
programs.git = {
enable = true;
lfs.enable = true;
signing.format = "openpgp";
settings = {
user.email = "tomoron@student.42angouleme.fr";
user.name = "tomoron";
init.defaultBranch="master";
pull.rebase = true;
push.autoSetupRemote = true;
rerere.enabled = true;
help.autocorrect = 1;
user.signingkey = "251B4BD73683A8DF13D760A868BFAFE31DF313AD";
commit.gpgsign = true;
alias = {
fuck = "!f() { git reset --hard \"@{upstream}\" && git restore . && git clean -f .; };f";
back = "reset HEAD~";
};
};
};
}