Compare commits

..

No commits in common. "3cbbb097be4556af46b4baaa94374e53f86336ee" and "058a8be80b43e62fb5a6b20bbf918b72be1ef4b6" have entirely different histories.

5 changed files with 17 additions and 3 deletions

View File

@ -1 +0,0 @@
https://icecast.radiofrance.fr/fip-hifi.aac

View File

@ -0,0 +1 @@
http://novazz.ice.infomaniak.ch/novazz-128.mp3

View File

@ -1 +0,0 @@
https://stream.radioparadise.com/flac

View File

@ -3,12 +3,12 @@ defaults
auth on auth on
tls on tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt tls_trust_file /etc/ssl/certs/ca-certificates.crt
port 587
logfile /tmp/msmtp.log logfile /tmp/msmtp.log
# Accounts # Accounts
account gmail account gmail
host smtp.gmail.com host smtp.gmail.com
port 587
from akasroua@gmail.com from akasroua@gmail.com
user akasroua@gmail.com user akasroua@gmail.com
passwordeval "pass mail/gmail" passwordeval "pass mail/gmail"
@ -16,12 +16,14 @@ passwordeval "pass mail/gmail"
account ugent account ugent
auth xoauth2 auth xoauth2
host smtp.office365.com host smtp.office365.com
port 587
from amin.kasrouaouam@ugent.be from amin.kasrouaouam@ugent.be
user amin.kasrouaouam@ugent.be user amin.kasrouaouam@ugent.be
passwordeval "nix-shell -p python3 --command 'python /home/coolneng/.local/share/scripts/mutt_oauth2.py /home/coolneng/.cache/tokenfile'" passwordeval "nix-shell -p python3 --command 'python /home/coolneng/.local/share/scripts/mutt_oauth2.py /home/coolneng/.cache/tokenfile'"
account disroot account disroot
host disroot.org host disroot.org
port 587
from akasroua@disroot.org from akasroua@disroot.org
user akasroua@disroot.org user akasroua@disroot.org
passwordeval "pass mail/disroot" passwordeval "pass mail/disroot"

13
shell.nix Normal file
View File

@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
stow
];
shellHook = ''
stow .
'';
}