refactor: change folder name

This commit is contained in:
tux
2025-02-22 16:10:37 +05:30
parent f4bd3b9b77
commit f35e1627c3
26 changed files with 23 additions and 23 deletions

20
modules/home/git/default.nix Executable file
View File

@ -0,0 +1,20 @@
{
email,
username,
...
}: {
programs.git = {
enable = true;
userName = "${username}";
userEmail = "${email}";
signing = {
key = "~/.ssh/id_ed25519.pub";
signByDefault = true;
};
extraConfig = {
init.defaultBranch = "main";
commit.gpgSign = true;
gpg.format = "ssh";
};
};
}