{ pkgs, ... }: { programs.git = { enable = true; # 기본 사용자 설정 # userName = "imnyang"; # userEmail = "imnyang@pm.me"; settings = { user = { signingkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOHP3Z+AYrRh9f8TYyqChKfeyNm3lOe0F75AwRHTTaxD"; name = "imnyang"; email = "imnyang@pm.me"; }; # gpg = { # format = "ssh"; # "ssh".program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"; # }; # commit.gpgsign = true; init.defaultBranch = "main"; pull.rebase = false; includeIf."gitdir:~/workspaces/git/adofai.gg/" = { path = builtins.toFile "gitconfig-adofaigg" '' [user] email = imnyang@adofai.gg ''; }; }; }; }