diff --git a/users/simon/modules/zsh/default.nix b/users/simon/modules/zsh/default.nix index 1fbfa6e..5a7da64 100644 --- a/users/simon/modules/zsh/default.nix +++ b/users/simon/modules/zsh/default.nix @@ -120,8 +120,6 @@ in # history setopt HIST_IGNORE_ALL_DUPS - - source ${./pass-wrappers.zsh} '') ]; }; diff --git a/users/simon/modules/zsh/pass-wrappers.zsh b/users/simon/modules/zsh/pass-wrappers.zsh deleted file mode 100644 index 72df6ca..0000000 --- a/users/simon/modules/zsh/pass-wrappers.zsh +++ /dev/null @@ -1,13 +0,0 @@ -function pass-field() { - pass show "$1" | grep "$2" | cut -d: -f2- | tr -d ' ' -} - -function drone() ( - export DRONE_SERVER="$(pass-field sbruder.de/drone Server)" - export DRONE_TOKEN="$(pass sbruder.de/drone | head -n 1)" - command drone $@ -) - -function drone-add-netlify() { - drone secret add --name netlify_auth_token --data "$(pass-field web/netlify.com Drone-Key)" "$1" -}