about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-22 15:55:57 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-22 15:55:57 +0200
commit46fc8188e95ecccaf03dd0cfb394d804cc00c8a8 (patch)
tree73583824c4593dccd9a3de8339f14bb0fd1c3254
parentUse pkgs.gitFull git package (diff)
downloadnixos-config-46fc8188e95ecccaf03dd0cfb394d804cc00c8a8.tar.gz
nixos-config-46fc8188e95ecccaf03dd0cfb394d804cc00c8a8.tar.bz2
nixos-config-46fc8188e95ecccaf03dd0cfb394d804cc00c8a8.zip
Home: Git: Add send-email 'account'
-rw-r--r--hosts/home.nix7
-rw-r--r--secrets/default.nixbin554 -> 598 bytes
2 files changed, 7 insertions, 0 deletions
diff --git a/hosts/home.nix b/hosts/home.nix
index d742451..bb13861 100644
--- a/hosts/home.nix
+++ b/hosts/home.nix
@@ -104,6 +104,13 @@
       extraConfig = {
         push.autoSetupRemote = true;
         init.defaultBranch = "master";
+        sendemail = {
+          smtpserver = "smtp.gmail.com";
+          smtpserverport = "587";
+          smtpencryption = "tls";
+          smtpuser = "manuelpalenzuelamerino@gmail.com";
+          smtpPass = secrets.git.email.password;
+        };
       };
     };
 
diff --git a/secrets/default.nix b/secrets/default.nix
index bf1371a..cec0392 100644
--- a/secrets/default.nix
+++ b/secrets/default.nix
Binary files differ