dotfiles/secrets/env

25 lines
1.4 KiB
Plaintext
Raw Normal View History

#!/bin/bash
export PASS_LIBREFM="$(pass entertainment/libre.fm | head -n 1)"
export PASS_MUSICBRAINZ="$(pass entertainment/musicbrainz.org | head -n 1)"
export PASS_LISTENBRAINZ="$(pass entertainment/musicbrainz.org | rg 'listenbrainz_token' | cut -d' ' -f2-)"
export PASS_MUSPY="$(pass entertainment/muspy.com | head -n 1)"
export PASS_ARIA2="$(pass linux/aria2 | head -n 1)"
export PASS_MPD="$(pass linux/mpd | head -n 1)"
export PASS_MPD_ADMIN="$(pass linux/mpd-admin | head -n 1)"
2020-11-21 13:02:03 +02:00
export PASS_IPMI="$(pass selfhosted/idrac | head -n 1)"
export PASS_MQTT="$(pass selfhosted/mqtt.reekynet.com | head -n 1)"
export ME_FULLNAME="$(pass me | head -n 1)"
export ME_ADDRESS="$(pass me | rg 'address' | cut -d' ' -f2-)"
export ME_PHONE="$(pass me | rg 'phone' | cut -d' ' -f2-)"
2020-04-04 11:30:43 +03:00
2020-11-21 13:02:03 +02:00
export WIREGUARD_MIRKWOOD_PRIVKEY="$(pass selfhosted/wireguard/mirkwood | grep PrivateKey | cut -d' ' -f2-)"
export WIREGUARD_MIRKWOOD_PUBKEY="$(pass selfhosted/wireguard/mirkwood | grep PublicKey | cut -d' ' -f2-)"
export WIREGUARD_MIRKWOOD_PSK="$(pass selfhosted/wireguard/mirkwood | grep PreSharedKey | cut -d' ' -f2-)"
2020-04-04 11:30:43 +03:00
2020-11-21 13:02:03 +02:00
export WIREGUARD_MORIA_PRIVKEY="$(pass selfhosted/wireguard/moria | grep PrivateKey | cut -d' ' -f2-)"
export WIREGUARD_MORIA_PUBKEY="$(pass selfhosted/wireguard/moria | grep PublicKey | cut -d' ' -f2-)"
export EMAIL_MARKO_PASS="$(pass email/marko@korhonen.cc | head -1)"
export EMAIL_ADMIN_PASS="$(pass email/admin@korhonen.cc | head -1)"