workstation | enable msmtp
This commit is contained in:
parent
d93d933d05
commit
ce0a7be00b
1 changed files with 15 additions and 0 deletions
|
|
@ -93,6 +93,7 @@
|
||||||
gitFull
|
gitFull
|
||||||
gnupg
|
gnupg
|
||||||
home-manager
|
home-manager
|
||||||
|
keyutils
|
||||||
mosh
|
mosh
|
||||||
pulseaudio
|
pulseaudio
|
||||||
python310
|
python310
|
||||||
|
|
@ -185,5 +186,19 @@
|
||||||
system.stateVersion = "22.05"; # Did you read the comment?
|
system.stateVersion = "22.05"; # Did you read the comment?
|
||||||
nixpkgs.config.firefox.enableGnomeExtenions = true;
|
nixpkgs.config.firefox.enableGnomeExtenions = true;
|
||||||
services.gnome.chrome-gnome-shell.enable = true;
|
services.gnome.chrome-gnome-shell.enable = true;
|
||||||
|
## -> ## programs.qutebrowser.enableWideVine = true;
|
||||||
|
programs.msmtp = {
|
||||||
|
enable = true;
|
||||||
|
accounts = {
|
||||||
|
default = {
|
||||||
|
auth = true;
|
||||||
|
tls = true;
|
||||||
|
from = "duck@duckland.org";
|
||||||
|
host = "smtp.gmail.com";
|
||||||
|
user = "duckunix@gmail.com";
|
||||||
|
passwordeval = "cat /home/don/.smtp_password.txt";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue