feat(git): add send-email config
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
6bcbadfdb1
commit
a2978995a3
2 changed files with 13 additions and 1 deletions
|
@ -12,6 +12,8 @@ in {
|
||||||
programs = {
|
programs = {
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.gitFull;
|
||||||
|
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
||||||
|
|
||||||
includes = [
|
includes = [
|
||||||
|
@ -28,7 +30,7 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
options = {
|
options = {
|
||||||
side-by-side = true;
|
side-by-side = true;
|
||||||
line-numbers-zero-style = "#E6EDF3"; #BD93F9";
|
line-numbers-zero-style = "#E6EDF3";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -45,6 +47,14 @@ in {
|
||||||
log = cmd;
|
log = cmd;
|
||||||
reflog = cmd;
|
reflog = cmd;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
sendemail = {
|
||||||
|
smtpserver = "127.0.0.1";
|
||||||
|
smtpuser = "matt@nelim.org";
|
||||||
|
smtpencryption = "tls";
|
||||||
|
smtpserverport = 1025;
|
||||||
|
smtpsslcertpath = "";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -143,6 +143,7 @@ in {
|
||||||
|
|
||||||
# Apps
|
# Apps
|
||||||
protonmail-desktop
|
protonmail-desktop
|
||||||
|
protonmail-bridge
|
||||||
spotifywm
|
spotifywm
|
||||||
photoqt
|
photoqt
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
|
@ -208,6 +209,7 @@ in {
|
||||||
"wl-paste --watch cliphist store"
|
"wl-paste --watch cliphist store"
|
||||||
|
|
||||||
"sleep 3; nextcloud --background"
|
"sleep 3; nextcloud --background"
|
||||||
|
"sleep 10; tmux new-session -s protonmail-bridge -d 'bash -c protonmail-bridge -c'"
|
||||||
|
|
||||||
"[workspace special:protonmail silent] sleep 10; proton-mail"
|
"[workspace special:protonmail silent] sleep 10; proton-mail"
|
||||||
"[workspace special:spot silent] spotify"
|
"[workspace special:spot silent] spotify"
|
||||||
|
|
Loading…
Reference in a new issue