summaryrefslogtreecommitdiff
path: root/config/nix.org
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-15 18:45:32 -0700
committerPreston Pan <ret2pop@nullring.xyz>2026-03-15 18:45:32 -0700
commit48e818808429e98e7db1f78b3e10537d829d2861 (patch)
treec9c06fcb0f8fe19b3a586fb2385d899e560af422 /config/nix.org
parent1f04e4d007d7fd56d997e2148b7d01db444f0495 (diff)
fix build process to use catppuccin theme; checkpoint
Diffstat (limited to 'config/nix.org')
-rw-r--r--config/nix.org26
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";