mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-12 17:53:57 +01:00
move fish secrets to a separate file
This commit is contained in:
parent
ae6f7b99b0
commit
1f3dee3936
2 changed files with 13 additions and 11 deletions
|
@ -12,32 +12,21 @@ set -gx RUSTC_WRAPPER sccache
|
|||
|
||||
set -gx VIRTUAL_ENV_DISABLE_PROMPT 1
|
||||
|
||||
set -gx HOMEBREW_GITHUB_API_TOKEN {{ (bitwardenFields "item" "github.com").fish_api_token.value | quote }}
|
||||
set -gx HOMEBREW_BINTRAY_USER "crocmagnon"
|
||||
set -gx HOMEBREW_BINTRAY_KEY {{ (bitwardenFields "item" "Bintray").fish_key.value | quote }}
|
||||
|
||||
set -gx LANG en_US.UTF-8
|
||||
|
||||
set -gx BAT_THEME "Solarized (dark)"
|
||||
|
||||
set -gx SCW_SECRET_TOKEN {{ (bitwardenFields "item" "console.scaleway.com").fish_secret_token.value | quote }}
|
||||
set -gx SCW_ACCESS_KEY {{ (bitwardenFields "item" "console.scaleway.com").fish_access_key.value | quote }}
|
||||
|
||||
set -gx GITLABBER_FOLDER_NAMING path
|
||||
set -gx GITLABBER_CLONE_METHOD ssh
|
||||
set -gx GITLABBER_GIT_CONCURRENCY 10
|
||||
|
||||
set -gx PYPI_USERNAME __token__
|
||||
set -gx PYPI_TOKEN {{ (bitwardenFields "item" "PyPi").token.value | quote }}
|
||||
|
||||
set -gx POETRY_PYPI_TOKEN_PYPI $PYPI_TOKEN
|
||||
set -gx POETRY_HTTP_BASIC_PYPI_USERNAME $PYPI_USERNAME
|
||||
set -gx POETRY_HTTP_BASIC_PYPI_PASSWORD $PYPI_TOKEN
|
||||
|
||||
set -gx ANSIBLE_NOCOWS 1
|
||||
|
||||
set -gx GITEA_TOKEN {{ (bitwardenFields "item" "git.augendre.info").fish_config_token.value | quote }}
|
||||
|
||||
{{- if eq .chezmoi.os "darwin" }}
|
||||
set -g fish_greeting "Yo ✌🏻Bien ?"
|
||||
{{- else }}
|
||||
|
@ -58,5 +47,6 @@ set -gx DJANGOPROJECT_DATA_DIR $HOME/.djangoproject
|
|||
|
||||
mise activate fish | source
|
||||
test -e {$HOME}/.config/fish/work.fish; and source {$HOME}/.config/fish/work.fish
|
||||
test -e {$HOME}/.config/fish/secrets.fish; and source {$HOME}/.config/fish/secrets.fish
|
||||
|
||||
set tide_character_icon '$'
|
||||
|
|
12
dot_config/fish/private_secrets.fish.tmpl
Normal file
12
dot_config/fish/private_secrets.fish.tmpl
Normal file
|
@ -0,0 +1,12 @@
|
|||
set -gx SCW_SECRET_TOKEN {{ (bitwardenFields "item" "console.scaleway.com").fish_secret_token.value | quote }}
|
||||
set -gx SCW_ACCESS_KEY {{ (bitwardenFields "item" "console.scaleway.com").fish_access_key.value | quote }}
|
||||
|
||||
set -gx HOMEBREW_GITHUB_API_TOKEN {{ (bitwardenFields "item" "github.com").fish_api_token.value | quote }}
|
||||
set -gx HOMEBREW_BINTRAY_USER "crocmagnon"
|
||||
set -gx HOMEBREW_BINTRAY_KEY {{ (bitwardenFields "item" "Bintray").fish_key.value | quote }}
|
||||
|
||||
set -gx PYPI_USERNAME __token__
|
||||
set -gx PYPI_TOKEN {{ (bitwardenFields "item" "PyPi").token.value | quote }}
|
||||
|
||||
set -gx GITEA_TOKEN {{ (bitwardenFields "item" "git.augendre.info").fish_config_token.value | quote }}
|
||||
|
Loading…
Reference in a new issue