diff options
Diffstat (limited to 'config/nix.org')
| -rw-r--r-- | config/nix.org | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/config/nix.org b/config/nix.org index 6eb55d5..3a8350b 100644 --- a/config/nix.org +++ b/config/nix.org @@ -3514,16 +3514,29 @@ Make sure those are set correctly. I've set it to sign by default. programs.git = { enable = lib.mkDefault config.monorepo.profiles.graphics.enable; package = pkgs.gitFull; - lfs.enable = lib.mkDefault config.monorepo.profiles.graphics.enable; userName = super.monorepo.vars.fullName; - userEmail = "${super.monorepo.vars.email}"; + userEmail = super.monorepo.vars.email; + lfs.enable = lib.mkDefault config.monorepo.profiles.graphics.enable; + signing = { key = super.monorepo.vars.gpgKey; signByDefault = true; }; + # alias = { + # pl = "pull"; + # ps = "push"; + # co = "checkout"; + # c = "commit"; + # a = "add"; + # st = "status"; + # sw = "switch"; + # b = "branch"; + # }; + extraConfig = { init.defaultBranch = "main"; + credential."mail.${super.monorepo.vars.orgHost}" = { username = "${super.monorepo.vars.email}"; helper = "!f() { test \"$1\" = get && echo \"password=$(cat /run/user/1000/secrets/mail)\"; }; f"; @@ -3535,7 +3548,16 @@ Make sure those are set correctly. I've set it to sign by default. smtpserverport = 465; smtpencryption = "ssl"; }; + }; + # settings = { + # user = { + # name = super.monorepo.vars.fullName; + # email = super.monorepo.vars.email; + # }; + + + # }; aliases = { pl = "pull"; |
