diff --git a/workstation/configuration.nix b/workstation/configuration.nix index ddca79b..2508609 100644 --- a/workstation/configuration.nix +++ b/workstation/configuration.nix @@ -93,6 +93,7 @@ gitFull gnupg home-manager + keyutils mosh pulseaudio python310 @@ -185,5 +186,19 @@ system.stateVersion = "22.05"; # Did you read the comment? nixpkgs.config.firefox.enableGnomeExtenions = 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"; + }; + }; + }; }