changes to modules + adoption of PC

This commit is contained in:
2026-06-24 21:59:08 -05:00
parent 872d29c688
commit 03c2d57c67
46 changed files with 970 additions and 217 deletions
+22 -1
View File
@@ -1,9 +1,30 @@
{ ... }:
{ pkgs, ... }:
{
programs.git = {
enable = true;
settings = {
user = {
name = "Maaz Khokhar";
email = "khokharmaaz@gmail.com";
};
signing = {
key = "0xA8D1AEA9C92D6867"; # e.g., "0x1234567890ABCDEF"
signByDefault = true;
};
credential.helper = "libsecret";
extraConfig = {
commit.gpgSign = true;
tag.gpgSign = true;
gpg.program = "${pkgs.gnupg}/bin/gpg";
init.defaultBranch = "main";
pull.rebase = true;
};
};
};
programs.delta = {
enable = true;
options = {